summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_tasks.py
Commit message (Expand)AuthorAgeFilesLines
* asyncio.test_tasks: Fix test_env_var_debug to use correct asyncio moduleYury Selivanov2014-09-251-4/+11
* asyncio, Tulip issue 201: Fix a race condition in wait_for()Victor Stinner2014-08-281-0/+15
* asyncio: sync with TulipVictor Stinner2014-07-291-0/+6
* asyncio: test_as_completed(): disable "slow callback" warningVictor Stinner2014-07-161-0/+2
* Issue #21163: Fix "destroy pending task" warning in test_wait_errors()Victor Stinner2014-07-161-4/+7
* asyncio: sync with TulipVictor Stinner2014-07-111-5/+4
* asyncio: sync with TulipVictor Stinner2014-07-101-8/+3
* asyncio: sync with TulipVictor Stinner2014-07-101-7/+42
* asyncio: sync with TulipVictor Stinner2014-07-081-0/+3
* Closes #21886, #21447: Fix a race condition in asyncio when setting the resultVictor Stinner2014-07-051-0/+4
* 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-271-2/+2
* asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task andVictor Stinner2014-06-271-0/+14
* 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-251-0/+3
* Issue #21163, asyncio: Fix some "Task was destroyed but it is pending!" logs ...Victor Stinner2014-06-251-6/+4
* asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandleVictor Stinner2014-06-251-31/+47
* 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-241-3/+42
* asyncio: Add an unit test to check that setting the PYTHONASYNCIODEBUG env varVictor Stinner2014-06-221-4/+0
* asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUGVictor Stinner2014-06-221-0/+2
* asyncio: Fix pyflakes errorsVictor Stinner2014-06-181-1/+0
* asyncio: Refactor tests: add a base TestCase classVictor Stinner2014-06-171-69/+36
* asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator onVictor Stinner2014-06-171-8/+40
* 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-121-8/+21
* asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166.Guido van Rossum2014-04-271-0/+8
* asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163).Guido van Rossum2014-04-151-0/+47
* 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
* asyncio: Fix pyflakes warnings: remove unused variables and importsVictor Stinner2014-02-261-6/+2
* asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests.Victor Stinner2014-02-191-0/+28
* asyncio: pep8-ify the code.Yury Selivanov2014-02-191-1/+3
* asyncio: Change as_completed() to use a Queue, to avoid O(N**2) behavior. Fix...Guido van Rossum2014-02-131-1/+22
* asyncio, Tulip issue 131: as_completed() and wait() now raises a TypeError ifVictor Stinner2014-02-111-0/+26
* asyncio, Tulip issue 126: call_soon(), call_soon_threadsafe(), call_later(),Victor Stinner2014-02-111-7/+5
* asyncio: Test fix.Guido van Rossum2014-02-091-1/+1
* asyncio.tasks: Fix as_completed, gather & wait to work with duplicate coroutinesYury Selivanov2014-02-071-8/+47
* asyncio: Fix misc whitespace issues.Guido van Rossum2014-01-311-11/+12
* asyncio: wait_for() now accepts None as timeout (Victor Stinner).Guido van Rossum2014-01-291-0/+11
* Update asyncio from the Tulip projectVictor Stinner2014-01-251-299/+297
* asyncio: wait_for() now cancels the future on timeout. Patch written by GustavoVictor Stinner2014-01-231-15/+14
* asyncio: Clean up formatting.Guido van Rossum2013-12-191-1/+3
* Close #19967: Thanks to the PEP 442, asyncio.Future can use a destructor inVictor Stinner2013-12-191-0/+2