summaryrefslogtreecommitdiff
path: root/eventlet/greenio.py
Commit message (Expand)AuthorAgeFilesLines
* Added eventlet.green.os and its test; rewrote wrap_pipe_with_coroutine_pipe t...Ryan Williams2010-02-051-8/+4
* First cut of eventlet.green.subprocess module. Added stdlib tests as well. ...Ryan Williams2010-01-291-4/+18
* Moved trampoline into hubs/__init__, which maybe is the best place for it; op...Ryan Williams2010-01-241-1/+1
* Automated merge with http://bitbucket.org/which_linden/eventlet/Ryan Williams2010-01-081-2/+16
|\
| * Improved error reporting when we are on Windows and try to do something that ...Ryan Williams2010-01-081-2/+16
* | Removed Event from __init__ and added some comments to greenio.Ryan Williams2010-01-061-0/+20
* | Removed Green_fileobject and moved its contents to GreenPipe. Removed higher...Ryan Williams2010-01-021-188/+99
|/
* Moved get_hub, use_hub, get_default_hub to eventlet.hubs. This is a step in ...Ryan Williams2009-12-171-1/+2
* Removed previously-deprecated features tcp_server, GreenSSL, erpc, and trap_e...Ryan Williams2009-12-151-13/+1
* Renamed GreenFile to Green_fileobject, better reflecting its purpose. This i...Ryan Williams2009-12-051-5/+6
* Arg, stupid inheritanceRyan Williams2009-12-051-1/+4
* Improved GreenSocket construction, added connect timeout test.Ryan Williams2009-12-051-0/+5
* Fixed minor compatibility issue with 2.6 relating to the weird _GLOBAL_DEFAUL...Ryan Williams2009-11-281-1/+7
* Replaced copy-and-pasted httplib with patched httplib, saving a few K. Added...Ryan Williams2009-11-281-1/+1
* Added eventlet.green.OpenSSL to further rationalize our SSL support, carved o...Ryan Williams2009-11-271-185/+18
* Converted test_socket to use the patcher, fixed minor divergence from standar...Ryan Williams2009-11-261-3/+11
* Moved GreenSSLObject into eventlet.green.socket, cleaned up imports slightly,...Ryan Williams2009-11-241-66/+0
* Initial implemenation of using ssl module instead of pyOpenSSL.Ryan Williams2009-11-211-7/+42
* Removed copyright headers from individual files, added LICENSE and AUTHORS fi...Ryan Williams2009-10-031-20/+0
* Fix for an issue where zeroreturnerror was being raised from within the green...Ryan Williams2009-09-041-1/+3
* Fix for http://bitbucket.org/which_linden/eventlet/issue/2/more-issues-with-p...Ryan Williams2009-08-311-0/+4
* Brought api_test up to date with code changes, the daggy fix approach appears...Ryan Williams2009-08-231-2/+0
* Fixed incorrect assert syntax.Ryan Williams2009-08-171-2/+2
* Refactored the hubs again, now we support multiple readers/writers on a singl...Ryan Williams2009-08-131-1/+1
* Full duplex for select hub. tcp_server has to be changed because we no longe...Ryan Williams2009-08-021-6/+5
* Moved socketpair and fromfd into green/socket and removed from greenioRyan Williams2009-07-241-11/+0
* Fixed test_socket_ssl failures.Ryan Williams2009-07-191-7/+18
* Moved SSL imports out of util, removed SSL-specific exceptions from the vario...Ryan Williams2009-07-191-23/+29
* Finished up SSL.Connection compatibility. Backwards compatibility change: it...Ryan Williams2009-07-191-16/+112
* Increased compatibility by writing an analogue of the SSL object returned by ...Ryan Williams2009-07-191-0/+40
* Removed RefCount so that GreenSSL behaves more like SSL.Connection, fixed wsg...Ryan Williams2009-07-191-45/+12
* Added sendall that matches behavior of SSL.Connection sendall. Removed defau...Ryan Williams2009-07-191-2/+13
* Added flags argument to send and recv variants, for completeness.Ryan Williams2009-07-191-16/+16
* Both read and write behave properly with regard to WantRead and WantWrite; se...Ryan Williams2009-07-191-15/+35
* Implementation of GreenSSL.read that I'm much happier about, as it only does ...Ryan Williams2009-07-171-10/+8
* Wrong varnameRyan Williams2009-07-171-1/+1
* Fixed httplib bug reported by Cesar Alaniz, realized that the unit test I'd w...Ryan Williams2009-07-171-29/+47
* move copytright and license out of docstring in the commentsDenis Bilenko2009-06-121-23/+19
* greenio: fix GreenSocket.dup to preserve the timeout (patch by Marcin Bachry)Denis Bilenko2009-06-121-1/+3
* Fixed test_connect_sslRyan Williams2009-06-021-1/+3
* Fixed failing test by adding new makefile() method to GreenSSL.Ryan Williams2009-05-281-1/+35
* greenio: fix bug in GreenSocket.set_blocking, it used to put the underlying s...Denis Bilenko2009-06-111-1/+0
* Nat's patch for making greenio successfully import under Windows by deferring...Ryan Williams2009-06-071-6/+8
* Test and fix for weird 'Unexpected EOF' error discovered through use. wsgi_t...Ryan Williams2009-06-021-0/+7
* import fix for GreenSSL from http://bitbucket.org/fzzzy/eventlet/changeset/4a...Denis Bilenko2009-05-241-1/+4
* Fix test_socket by properly wrapping socketpair and fromfd in the eventlet.gr...donovan2009-03-281-0/+10
* greenio: save the reference to the original socket in case it will be monkey ...Denis Bilenko2009-01-141-1/+2
* removed dependency on twisted from greenio.pyDenis Bilenko2008-12-111-5/+0
* added makeGreenFile method to greenio.GreenSocket which creates GreenFile ins...Denis Bilenko2008-12-101-9/+4
* added connect_ex method to GreenSocketDenis Bilenko2008-11-241-3/+24