summaryrefslogtreecommitdiff
path: root/greentest
Commit message (Expand)AuthorAgeFilesLines
* reimplement BoundedSemaphore using two Semaphores; this resulted in a much mo...Denis Bilenko2009-03-291-2/+2
* GreenTransportBase: revert half-closability (does not work with TLS anyway an...Denis Bilenko2009-02-201-46/+46
* GreenTransportBase: implement half-closability and write() that blocks until ...Denis Bilenko2009-02-091-24/+68
* proc fix: Source.wait(0) used to do the wrong thing - return None instead of ...Denis Bilenko2009-01-211-6/+17
* proc: special case for link(current greenlet) - raise an exception immediatel...Denis Bilenko2009-01-191-5/+7
* removed httpd and its testDenis Bilenko2009-01-131-212/+0
* removed debugging print statementDenis Bilenko2009-01-131-1/+0
* Automated merge with http://www.donovanpreston.com:8888/eventlet-twisted-inte...Denis Bilenko2009-01-1322-316/+867
|\
| * updated copyrightsDenis Bilenko2009-01-1319-13/+152
| * made test suite runnable under 2.4; it logs the Python version in the outputDenis Bilenko2009-01-129-92/+107
| * proc module: renames wait to waitall; it only supports list of Procs now but ...Denis Bilenko2009-01-121-11/+11
| * tests: fixed a few unused or forgotten importsDenis Bilenko2009-01-124-4/+3
| * simplifed and rewrote proc module; the interface is mostly the same exceptDenis Bilenko2009-01-121-75/+150
| * added test_thread__boundedsem.pyDenis Bilenko2009-01-121-0/+11
| * added test_socket_ssl.py from standard python testsDenis Bilenko2009-01-121-0/+133
| * added test__socket_errors.pyDenis Bilenko2009-01-121-0/+21
| * fixed test__event.py: removed old imports of JobDenis Bilenko2009-01-111-1/+1
| * added test__hub.py: tests schedule_local and schedule_global differenceDenis Bilenko2009-01-111-0/+42
| * removed Job & friends from coros; use proc insteadDenis Bilenko2009-01-111-128/+0
| * removed CancellingTimersGreenlet and Hub.cancel_timers; instead LocalTimer is...Denis Bilenko2009-01-111-19/+23
| * generate_report.py: protect from bogus inputDenis Bilenko2009-01-111-5/+5
| * added copyrightDenis Bilenko2008-12-3112-0/+240
* | mergedonovan2008-12-295-118/+105
|\ \ | |/ |/|
| * Rename the eventlet.support.greenlet module to greenlets to avoid clashing wi...donovan2008-12-295-118/+105
* | added proc - advanced coroutine control, with tests, 1 test failsDenis Bilenko2008-12-291-0/+303
|/
* added test for semaphore(0, 0) deadlockDenis Bilenko2008-12-241-0/+30
* removed test_xxx_green.py files; moved the relevant stuff to test_xxx.py dire...Denis Bilenko2008-12-2415-59/+33
* fixed typoDenis Bilenko2008-12-221-1/+1
* twistedutil fix: SpawnFactory could spawn handler with unconnected transport ...Denis Bilenko2008-12-191-2/+26
* added [failing] test for coros.event send method bugDenis Bilenko2008-12-161-1/+14
* added tests for coros.JobGroupDenis Bilenko2008-12-161-15/+78
* better error messages in case of test failureDenis Bilenko2008-12-161-3/+3
* twistedutil.protocol.GreenTransport: made bufferSize of twisted's transport c...Denis Bilenko2008-12-161-105/+80
* made api.timeout accept None as seconds argument, meaning the whole thing is ...Denis Bilenko2008-12-161-3/+8
* test__api_timeout.py: fixed always true asserts; replaced always false assert...Denis Bilenko2008-12-161-6/+6
* Job's __init__ now accepts event as a parameter instead of a function; to spa...Denis Bilenko2008-12-151-7/+7
* removed httpd_test and wsgi_test from the list of tests skipped by defaultDenis Bilenko2008-12-101-1/+1
* added makeGreenFile method to greenio.GreenSocket which creates GreenFile ins...Denis Bilenko2008-12-104-28/+28
* Removed spawn_link and AsyncJob; added Job class that does the sameDenis Bilenko2008-12-101-9/+9
* renamed Buffer->GreenTransport, BufferCreator->GreenClientCreator etc; made t...Denis Bilenko2008-12-101-0/+211
* added exit_unless_twisted function to greentest; moved my code from test_supp...Denis Bilenko2008-12-104-11/+17
* added test for api.timeout: explicitly supplying _SilentException as an argumentDenis Bilenko2008-12-101-1/+14
* added test for api.timeout that checks no references to the error object were...Denis Bilenko2008-12-101-0/+12
* added 'throw_args' test for api.timeoutDenis Bilenko2008-12-101-0/+14
* renamed coros.async_result to coros.AsyncJob; added poll, kill_after, __nonze...Denis Bilenko2008-12-101-4/+36
* fixed bug with nested api.with_timeout interfering with each other; added a t...Denis Bilenko2008-12-101-1/+6
* api.timeout: removed doctest, added a unittest. added a testcase for nested t...Denis Bilenko2008-12-101-0/+61
* added tests for eventlet.twistedutil.block_onDenis Bilenko2008-12-051-0/+39
* simple support for disabling testsDenis Bilenko2008-12-052-1/+10
* added spawn_link function (with tests)Denis Bilenko2008-11-241-3/+38