- 28 Jan, 2010 33 commits
-
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
monkey: fix patch_socket() to expect that ssl may not be present in socket module; also patch sslerror too
-
Denis Bilenko authored
-
Denis Bilenko authored
- add sslerror to __all__
-
Denis Bilenko authored
- rename GreenSSL to SSLObject - remove is_secure attribute - add __getattr__ since base class no longer has it - clear exc_info before switching - accept() now uses socket.accept()
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
- add ssl_listener() function
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
- store the real socket as '_sock' instead of 'fd'; fd is available as a deprecated alias - __getattr__ is gone; it screws up subclassing; the delegated methods are implemented directly, similar to how stdlib socket does it - sendall is fixed to never call _sock.sendall (it used to do it when timeout==0.0) - this won't work for ssl subclasses it also does not call time.time() twice in a row anymore
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
- signal error via select.error exception that is imported from stdlib's select
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
- cancel() is usually used in "finally" sections and raising anything here is not helpful
-
- 27 Jan, 2010 2 commits
-
-
Denis Bilenko authored
GreenletSet: make spawn* function work well with Greenlet subclasses (do not assume what the arguments should look like)
-
Denis Bilenko authored
greenlet: fix spawn_link* functions to work well with Greenlet's subclasses (thanks to Marcus Cavanaugh)
-
- 26 Jan, 2010 5 commits
-
-
Denis Bilenko authored
- some module don't have a single unittest; they were missed by --stats
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-
Denis Bilenko authored
-