summaryrefslogtreecommitdiff
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* drop support for Python 2.6 and 3.2Victor Stinner2016-02-221-8/+2
* Don't use deprecated functions in testsVictor Stinner2015-01-063-10/+17
* Remove tests duplicated in aiotestVictor Stinner2014-12-156-414/+0
* Remove a test which behaves differently depending on the the version of async...Victor Stinner2014-12-121-10/+0
* rename the project from aiogreen to aioeventletVictor Stinner2014-12-034-34/+34
* Rename the link_future() function to yield_future()Victor Stinner2014-12-031-15/+15
* fix pyflakes warningsVictor Stinner2014-11-251-1/+1
* tests: check also the exception messageVictor Stinner2014-11-242-6/+13
* wrap_greenthread(): catch missing run attributeVictor Stinner2014-11-241-0/+15
* add tests directly on greenletVictor Stinner2014-11-241-0/+37
* old version of asyncio didn't check thread safetyVictor Stinner2014-11-231-7/+0
* Fix to run an event loop in a thread different than the main thread in debugVictor Stinner2014-11-231-0/+47
* fix call_soon() when called on a closed loopVictor Stinner2014-11-231-0/+10
* cleanup testsVictor Stinner2014-11-221-33/+18
* link_future() only accepts coroutine objects, not coroutine functionsVictor Stinner2014-11-221-0/+17
* tests: use shorter delaysVictor Stinner2014-11-222-18/+19
* link_future() now accepts coroutine objectsVictor Stinner2014-11-221-8/+39
* Revert debug commitVictor Stinner2014-11-221-3/+3
* link_future() now raises an exception if it is called from the greenthread ofVictor Stinner2014-11-221-7/+45
* debugVictor Stinner2014-11-211-3/+3
* fix testsVictor Stinner2014-11-211-1/+1
* wrap_greenthread() now raises an exception if the greenthread is runningVictor Stinner2014-11-211-21/+44
* In debug mode, wrap_greenthread() now logs a warning if the greenthead isVictor Stinner2014-11-212-0/+19
* wrap_greenthread() now also works on greenlet objectsVictor Stinner2014-11-211-4/+86
* remove old codeVictor Stinner2014-11-211-36/+0
* Add the link_future() functionVictor Stinner2014-11-211-20/+6
* Add the wrap_greenthread() functionVictor Stinner2014-11-211-18/+27
* Port tests to asyncio 3.4.1Victor Stinner2014-11-211-14/+18
* example to chain a task with a coroutineVictor Stinner2014-11-211-8/+70
* call_soon() now detects automatically switch to call_soon_threadsafe() ifVictor Stinner2014-11-211-7/+7
* Test for chain coroutine to greenthreadVictor Stinner2014-11-211-0/+104
* Add more complex coroutine exampleVictor Stinner2014-11-211-1/+31
* In debug mode, detect calls to call_soon() from greenthreads which are notVictor Stinner2014-11-211-1/+25
* cleanup testsVictor Stinner2014-11-212-3/+0
* add eventlet testsVictor Stinner2014-11-211-0/+26
* add_reader() and add_writer() now cancels the previous handleVictor Stinner2014-11-201-0/+49
* Fix test_tcp_hello(): wait until the server is listeningVictor Stinner2014-11-201-2/+6
* Reuse the event loop policy from asyncio/trolliusVictor Stinner2014-11-201-3/+6
* port tests to python 2.6Victor Stinner2014-11-201-1/+5
* fix test_timer on windowsVictor Stinner2014-11-201-4/+4
* Fix EventLoop.stop(): don't stop immediatly, but schedule stopping the eventVictor Stinner2014-11-201-2/+2
* tests: each file is now executableVictor Stinner2014-11-196-0/+30
* convert last manual test to an unit testVictor Stinner2014-11-191-0/+75
* Convert more manual tests to unit testsVictor Stinner2014-11-195-1/+169
* add a first automated unit testVictor Stinner2014-11-192-0/+34