aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/tasks.py
Commit message (Expand)AuthorAge
* bpo-32311: Implement asyncio.create_task() shortcut (#4848)Andrew Svetlov2017-12-15
* bpo-32272: Remove asyncio.async() function. (#4784)Yury Selivanov2017-12-11
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-10
* bpo-32193: Convert asyncio to async/await usage (#4753)Andrew Svetlov2017-12-09
* asyncio: Remove asyncio/compat.py (#4606)Victor Stinner2017-11-28
* bpo-31556: asyncio.wait_for can cancel futures faster with timeout <= 0 (#3703)Victor K2017-10-05
* bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050)Yury Selivanov2017-06-11
* bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1097)INADA Naoki2017-05-11
* bpo-29617: Remove Python 3.3 support from asyncio (GH-232)INADA Naoki2017-04-25
* bpo-30098: Clarify that run_coroutine_threadsafe expects asyncio.Future (GH...Charles Renwick2017-04-21
* Issue #29314: Merge with 3.5Mariatta Wijaya2017-02-06
|\
| * Issue #29314: Set the stacklevel to two in asyncio.async() Deprecation WarningMariatta Wijaya2017-02-06
* | Issue #28544: Implement asyncio.Task in C.Yury Selivanov2016-10-28
|/
* Issue #26923: Fix asyncio.Gather to refuse being cancelled once all children ...Yury Selivanov2016-10-21
* Issue #27972: Prohibit Tasks to await on themselves.Yury Selivanov2016-10-09
* Misc asyncio improvements from upstreamGuido van Rossum2016-09-30
* Another asyncio sync.Yury Selivanov2016-09-15
* Merge asyncio upstream.Guido van Rossum2016-09-09
* Rename Future._blocking to _asyncio_future_blocking.Guido van Rossum2016-09-09
* asyncio: Remove asyncio.timeout() context manager.Yury Selivanov2016-06-08
* Issue #27041: asyncio: Add loop.create_future methodYury Selivanov2016-05-16
* asyncio: allow None as wait timeoutVictor Stinner2016-04-01
* 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