summaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/tasks.py
Commit message (Expand)AuthorAge
* Sync with asyncioAndrew Svetlov2016-01-11
* Sync with asyncio repoAndrew Svetlov2016-01-11
* asyncio: Make Tasks check if Futures are attached to the same event loopYury Selivanov2015-12-11
* asyncio: Drop "value" parameter from Task._step method.Yury Selivanov2015-11-20
* asyncio: Cleanup Future APIYury Selivanov2015-11-17
* asyncio: Sync with githubYury Selivanov2015-11-17
* asyncio: Optimize Task._wakeupYury Selivanov2015-11-16
* asyncio: Optimize asyncio.sleep(0)Yury Selivanov2015-11-05
* Docs and one small improvement for issue #25304, by Vincent Michel.Guido van Rossum2015-10-05
* Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel.Guido van Rossum2015-10-03
* asyncio: ensure_future() now understands awaitablesYury Selivanov2015-10-02
* Issue #24867: Fix Task.get_stack() for 'async def' coroutinesYury Selivanov2015-08-14
* Revert da29a94367b2Yury Selivanov2015-08-02
* asyncio: Fix code styleYury Selivanov2015-08-02
* asyncio: sync with githubVictor Stinner2015-07-25
* asyncio: Add asyncio.compat moduleVictor Stinner2015-07-25
* asyncio: Drop some useless code from tasks.py.Yury Selivanov2015-05-28
* asyncio: Support PEP 492. Issue #24017.Yury Selivanov2015-05-11
* asyncio: async() function is deprecated in favour of ensure_future().Yury Selivanov2015-05-11
* asyncio: sync with TulipVictor Stinner2015-01-29
* Closes #23219: cancelling asyncio.wait_for() now cancels the taskVictor Stinner2015-01-15
* asyncio: sync with TulipVictor Stinner2015-01-09
* asyncio: Truncate to 80 columnsVictor Stinner2015-01-09
* asyncio: Initialize more Future and Task attributes in the class definition toVictor Stinner2014-12-04
* Closes #22475: asyncio doc, fix Task.get_stack() docVictor Stinner2014-12-02
* Apply asyncio Task English fixes to docstrings as well.R David Murray2014-09-24
* asyncio, Tulip issue 201: Fix a race condition in wait_for()Victor Stinner2014-08-28
* asyncio: sync with TulipVictor Stinner2014-07-29
* Issue #21163: Fix "destroy pending task" warning in test_wait_errors()Victor Stinner2014-07-16
* Issue #21163, asyncio: Ignore "destroy pending task" warnings for private tasksVictor Stinner2014-07-16
* asyncio: sync with TulipVictor Stinner2014-07-11
* asyncio: sync with TulipVictor Stinner2014-07-11
* asyncio: sync with TulipVictor Stinner2014-07-11
* asyncio: sync with TulipVictor Stinner2014-07-08
* Closes #21886, #21447: Fix a race condition in asyncio when setting the resultVictor Stinner2014-07-05
* asyncio: sync with TulipVictor Stinner2014-07-03
* Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly()Victor Stinner2014-06-30
* asyncio: sync with Tulip, add a new asyncio.coroutines moduleVictor Stinner2014-06-29
* asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task andVictor Stinner2014-06-27
* asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutineVictor Stinner2014-06-27
* asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandleVictor Stinner2014-06-25
* asyncio: repr(Task) now also contains the line number even if the coroutine isVictor Stinner2014-06-24
* asyncio: Log an error if a Task is destroyed while it is still pendingVictor Stinner2014-06-24
* asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator onVictor Stinner2014-06-18
* asyncio: Task.__repr__() now also handles CoroWrapperVictor Stinner2014-06-17
* asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task)Victor Stinner2014-06-12
* Issue #21596: asyncio.wait(): mention that the sequence of futures must notVictor Stinner2014-06-10
* Issue #21601: Document asyncio.Task.cancel(). Initial patch written by VajraskyVictor Stinner2014-06-02
* asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166.Guido van Rossum2014-04-27
* asyncio: Be careful accessing instance variables in __del__ (closes #21340).Guido van Rossum2014-04-27