summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waitsVictor Stinner2014-07-081-0/+10
* asyncio: sync with TulipVictor Stinner2014-07-084-2/+43
* Closes #21886, #21447: Fix a race condition in asyncio when setting the resultVictor Stinner2014-07-052-0/+10
* asyncio: sync with TulipVictor Stinner2014-07-021-0/+11
* asyncio: Fix test_sleep_cancel(): call_later() mock has no self parameterVictor Stinner2014-07-011-2/+2
* asyncio: sync with TulipVictor Stinner2014-06-301-0/+1
* asyncio: sync with Tulip, add a new asyncio.coroutines moduleVictor Stinner2014-06-281-17/+17
* asyncio: Fix two "Coroutine xxx was never yielded from" messages in testsVictor Stinner2014-06-271-2/+6
* asyncio: Fix unit tests on Windows, escape filenames in regexVictor Stinner2014-06-272-6/+6
* asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task andVictor Stinner2014-06-274-6/+113
* asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutineVictor Stinner2014-06-271-0/+32
* asyncio: Oops, restore a removed testVictor Stinner2014-06-271-0/+3
* Issue #21163: Fix one more "Task was destroyed but it is pending!" log in testsVictor Stinner2014-06-251-2/+6
* asyncio: sync with TulipVictor Stinner2014-06-252-0/+9
* Issue #21163, asyncio: Fix some "Task was destroyed but it is pending!" logs ...Victor Stinner2014-06-253-16/+22
* asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandleVictor Stinner2014-06-254-75/+129
* asyncio: repr(Task) now also contains the line number even if the coroutine isVictor Stinner2014-06-241-2/+4
* asyncio: Log an error if a Task is destroyed while it is still pendingVictor Stinner2014-06-242-4/+44
* asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if theVictor Stinner2014-06-221-0/+9
* asyncio, Tulip issue 172: only log selector timing in debug modeVictor Stinner2014-06-221-0/+3
* asyncio: Add an unit test to check that setting the PYTHONASYNCIODEBUG env varVictor Stinner2014-06-222-4/+24
* asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUGVictor Stinner2014-06-224-12/+4
* asyncio, Tulip issue 105: in debug mode, log callbacks taking more than 100 msVictor Stinner2014-06-201-0/+28
* asyncio: Fix pyflakes errorsVictor Stinner2014-06-183-5/+2
* asyncio: Refactor tests: add a base TestCase classVictor Stinner2014-06-1712-219/+127
* asyncio: Refactor test__run_once_logging() to not rely on the exact number ofVictor Stinner2014-06-171-18/+11
* asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator onVictor Stinner2014-06-171-8/+40
* Issue #21723: asyncio.Queue: support any type of number (ex: float) for theVictor Stinner2014-06-171-0/+15
* Sync asyncio with Tulip: Fix test_tasks for Python 3.5Victor Stinner2014-06-161-4/+8
* asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task)Victor Stinner2014-06-122-29/+78
* Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoopVictor Stinner2014-06-102-3/+28
* Fix asyncio tests on Windows: wait for the subprocess exitVictor Stinner2014-06-031-0/+2
* Issue #21651: Fix ResourceWarning when running asyncio tests on Windows.Victor Stinner2014-06-031-0/+1
* cleanup test_asyncio/test_base_events.py: cm variable was unusedVictor Stinner2014-06-031-1/+1
* Issue #21119: asyncio: Make sure that socketpair() close sockets on errorVictor Stinner2014-06-031-0/+9
* Issue #21119: asyncio now closes sockets on errorsVictor Stinner2014-06-032-0/+39
* Fix for raising exception not derived from BaseException in _SelectorSslTrans...Andrew Svetlov2014-05-271-0/+4
* asyncio: test_base_events: use mock.Mock instead of unittest.mock.Mock toVictor Stinner2014-05-201-1/+1
* Fix test-order-dependend asyncio test failure caused by rev 909ea8cc86bbab92d...Guido van Rossum2014-05-131-6/+9
* asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if ...Guido van Rossum2014-05-121-0/+36
* asyncio: Fix the second half of issue #21447: race in _write_to_self().Guido van Rossum2014-05-061-2/+3
* asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166.Guido van Rossum2014-04-272-0/+14
* asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163).Guido van Rossum2014-04-151-0/+47
* remove superfluous and useless lineBenjamin Peterson2014-04-161-1/+0
* asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctlyYury Selivanov2014-04-151-0/+18
* asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1Yury Selivanov2014-04-151-0/+25
* Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError ifVictor Stinner2014-04-071-0/+11
* Issue #20668: Remove tests.txt of test_asyncioVictor Stinner2014-03-311-14/+0
* asyncio.tests: Autodiscover asyncio tests. Patch by Vajrasky Kok. Closes #20668Yury Selivanov2014-03-271-12/+10
* asyncio: Ensure call_soon(), call_later() and call_at() are invoked on currentVictor Stinner2014-03-211-0/+23