summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/tasks.py
Commit message (Expand)AuthorAgeFilesLines
* asyncio: Remove asyncio.timeout() context manager.Yury Selivanov2016-06-081-53/+0
* Issue #27041: asyncio: Add loop.create_future methodYury Selivanov2016-05-161-5/+9
* asyncio: allow None as wait timeoutVictor Stinner2016-04-011-6/+8
* Sync with asyncioAndrew Svetlov2016-01-111-1/+1
* Sync with asyncio repoAndrew Svetlov2016-01-111-0/+51
* asyncio: Make Tasks check if Futures are attached to the same event loopYury Selivanov2015-12-111-1/+7
* asyncio: Drop "value" parameter from Task._step method.Yury Selivanov2015-11-201-10/+12
* asyncio: Cleanup Future APIYury Selivanov2015-11-171-1/+2
* asyncio: Sync with githubYury Selivanov2015-11-171-3/+0
* asyncio: Optimize Task._wakeupYury Selivanov2015-11-161-2/+11
* asyncio: Optimize asyncio.sleep(0)Yury Selivanov2015-11-051-0/+4
* Docs and one small improvement for issue #25304, by Vincent Michel.Guido van Rossum2015-10-051-1/+6
* Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel.Guido van Rossum2015-10-031-1/+17
* asyncio: ensure_future() now understands awaitablesYury Selivanov2015-10-021-2/+14
* Issue #24867: Fix Task.get_stack() for 'async def' coroutinesYury Selivanov2015-08-141-1/+5
* Revert da29a94367b2Yury Selivanov2015-08-021-2/+3
* asyncio: Fix code styleYury Selivanov2015-08-021-3/+2
* asyncio: sync with githubVictor Stinner2015-07-251-2/+0
* asyncio: Add asyncio.compat moduleVictor Stinner2015-07-251-3/+2
* asyncio: Drop some useless code from tasks.py.Yury Selivanov2015-05-281-7/+2
* asyncio: Support PEP 492. Issue #24017.Yury Selivanov2015-05-121-2/+6
* asyncio: async() function is deprecated in favour of ensure_future().Yury Selivanov2015-05-111-6/+21
* asyncio: sync with TulipVictor Stinner2015-01-291-1/+1
* Closes #23219: cancelling asyncio.wait_for() now cancels the taskVictor Stinner2015-01-151-4/+8
* asyncio: sync with TulipVictor Stinner2015-01-091-4/+7
* asyncio: Truncate to 80 columnsVictor Stinner2015-01-081-1/+1
* asyncio: Initialize more Future and Task attributes in the class definition toVictor Stinner2014-12-041-3/+4
* Closes #22475: asyncio doc, fix Task.get_stack() docVictor Stinner2014-12-021-1/+1
* Apply asyncio Task English fixes to docstrings as well.R David Murray2014-09-241-9/+10
* asyncio, Tulip issue 201: Fix a race condition in wait_for()Victor Stinner2014-08-281-6/+9
* asyncio: sync with TulipVictor Stinner2014-07-291-19/+8
* Issue #21163: Fix "destroy pending task" warning in test_wait_errors()Victor Stinner2014-07-161-2/+2
* Issue #21163, asyncio: Ignore "destroy pending task" warnings for private tasksVictor Stinner2014-07-161-11/+23
* asyncio: sync with TulipVictor Stinner2014-07-111-1/+0
* asyncio: sync with TulipVictor Stinner2014-07-101-1/+0
* asyncio: sync with TulipVictor Stinner2014-07-101-1/+6
* asyncio: sync with TulipVictor Stinner2014-07-081-1/+3
* Closes #21886, #21447: Fix a race condition in asyncio when setting the resultVictor Stinner2014-07-051-1/+2
* asyncio: sync with TulipVictor Stinner2014-07-021-0/+3
* Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly()Victor Stinner2014-06-301-1/+4
* asyncio: sync with Tulip, add a new asyncio.coroutines moduleVictor Stinner2014-06-281-135/+8
* asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task andVictor Stinner2014-06-271-3/+11
* asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutineVictor Stinner2014-06-271-7/+10
* asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandleVictor Stinner2014-06-251-20/+31
* 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-0/+13
* asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator onVictor Stinner2014-06-171-4/+6
* asyncio: Task.__repr__() now also handles CoroWrapperVictor Stinner2014-06-161-1/+1
* asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task)Victor Stinner2014-06-121-1/+9
* Issue #21596: asyncio.wait(): mention that the sequence of futures must notVictor Stinner2014-06-101-0/+2