summaryrefslogtreecommitdiff
path: root/eventlet/greenio.py
Commit message (Expand)AuthorAgeFilesLines
* Fix "maximum recursion depth exceeded in GreenSocket.__del__"Jakub Stasiak2014-10-161-1/+9
* Remove dead codeJakub Stasiak2014-10-161-5/+0
* Reformat with autopep8Jakub Stasiak2014-10-111-11/+11
* Python 3 compat: Improve various bitsJakub Stasiak2014-10-101-8/+22
* greenio: When we mark a socket as closed we still need to be able to close itMichael Kerrin2014-08-281-19/+1
* PEP-8 fixesSergey Shepelev2014-08-271-0/+2
* hubs: defang after remove; related to second simultaneous read issue94-second-readMichael Kerrin2014-08-121-5/+5
* Fix second simultaneous read (parallel paramiko issue)Jan Grant2014-08-121-19/+110
* Python 3 compatibility fixesJakub Stasiak2014-07-181-4/+4
* greenio, tpool: python3 compatibilitySergey Shepelev2014-07-181-28/+36
* PyPy 2.3 compatibility fixDmitriy Kruglyak2014-06-121-2/+2
* python3 compatibilitySergey Shepelev2014-04-241-1/+1
* python3 compatibilitySergey Shepelev2014-04-231-23/+24
* pypy compatibilityJakub Stasiak2014-04-151-2/+9
* python3 compat fixesVictor Sergeyev2014-03-281-15/+12
* python3 compat: remove lots of Python 2.5 and earlier dependent code; use pri...Sergey Shepelev2013-12-031-4/+1
* python3 compat: 2to3: `except E as e:` syntaxDavanum Srinivas2013-12-031-14/+14
* greenio: socket pypy compatibility; Thanks to Alex GaynorSergey Shepelev2013-08-091-1/+19
* greenio: remove excess asserts for argsSergey Shepelev2013-07-091-2/+0
* doc: fix bitbucket links after relocation to separate accountSergey Shepelev2013-04-091-1/+1
* greenio: Pre-cache proxied GreenSocket methods; Fixes Bitbucket #136; Thanks ...Sergey Shepelev2013-02-011-4/+17
* greenio: socket.dup() made excess fcntl syscalls, added set_nonblocking=True ...Sergey Shepelev2013-01-241-5/+12
* greenio: socket.settimeout(0) then to >0 did not switch back to blocking mode...Sergey Shepelev2013-01-211-1/+3
* greenio: remove deprecated GreenPipe.xreadlines() method (was broken anyway)Sergey Shepelev2012-12-141-3/+0
* greenio: relative seek() typo _get_readahead_len; Thanks to AlanPSergey Shepelev2012-12-141-1/+1
* greenio: pep8, pyflakesSergey Shepelev2012-12-141-20/+27
* Fixes #69, thanks to the solid test case and patch. Added a unit test that v...Ryan Williams2010-12-111-0/+8
* Fixes #67. Windows emits WSAEINVAL if you try to connect to localhost-hosted...Ryan Williams2010-11-201-0/+2
* Added testcases for GreenPipe.seek and truncate, fixed problem with GreenPipe...amajorek2010-03-311-1/+1
* Fixed incompatibilities with os module.amajorek2010-03-311-1/+5
* Reimplemented GreenPipe without using file object.amajorek2010-03-301-116/+155
* Code simplification.amajorek2010-03-221-56/+10
* module eventlet.common moved to eventlet.supportamajorek2010-03-091-1/+1
* Add context manager to GreenPipe.scott2010-03-041-0/+6
* py3k - 3.x file object returned by socket.makefile does not allow writes if i...amajorek2010-02-281-2/+2
* New eventlet.common module to create version-neutral layer. For now only get_...amajorek2010-02-281-13/+1
* Merge with latest which_linden tipamajorek2010-02-271-103/+0
|\
| * New module convenience; moved convenience functions in there. Sectioned off ...Ryan Williams2010-02-251-103/+0
* | py3k - extracting errno from exception wrapped into get_errno function to wor...amajorek2010-02-271-14/+14
* | Merge with latest which_linden tipamajorek2010-02-261-73/+110
|\ \ | |/
| * First import of Sergey's serve method. Hacked to fit, a few tests written.Ryan Williams2010-02-251-6/+37
| * fixed various minor issues that pyflakes complained about, removed extraneous...Tavis Rudd2010-02-241-10/+2
| * fix implementation of connect_ex so it always returns the error code rather t...Tavis Rudd2010-02-241-47/+46
| * fixes #38. send() and sendall() seem to be good now (i think).Eugene Oden2010-02-241-5/+0
| * mergeEugene Oden2010-02-241-10/+22
| |\
| | * working on blocking send, which still isn't quite right reopens #38Eugene Oden2010-02-241-10/+22
| * | Trampolines that don't have a timeout don't need a timeout_exc.Ryan Williams2010-02-241-5/+3
| |/
| * minor fix for GreenSocket.send(). added socket.timeout arguments. more tests.Eugene Oden2010-02-221-13/+23
* | first draft of making eventlet py3k compatible.amajorek2010-02-261-13/+38
|/
* fixes for greenpipeEugene Oden2010-02-211-4/+4