summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-task.rst
Commit message (Expand)AuthorAgeFilesLines
* bpo-34270: Make it possible to name asyncio tasks (GH-8547)Alex Grönholm2018-08-081-3/+33
* Fix typo introduced in GH-7217 (#7230)Elvis Pranskevichus2018-05-301-1/+1
* bpo-23859: Document that asyncio.wait() does not cancel its futures (#7217)Elvis Pranskevichus2018-05-291-0/+3
* bpo-32751: Wait for task cancellation in asyncio.wait_for() (GH-7216)Elvis Pranskevichus2018-05-291-1/+8
* bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (G...Yury Selivanov2018-05-291-0/+4
* bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174)Yury Selivanov2018-05-281-2/+5
* bpo-32436: Document PEP 567 changes to asyncio. (GH-7073)Yury Selivanov2018-05-231-2/+17
* bpo-32996: The bulk of What's New in Python 3.7 (GH-6978)Elvis Pranskevichus2018-05-201-1/+1
* asyncio/docs: Mark asyncio.run() as provisional in 3.7. (#6946)Yury Selivanov2018-05-171-0/+2
* Fix docs markup for asyncio current_task() and all_tasks() (#6089)Andrew Svetlov2018-03-121-2/+2
* Fix missing coroutine declaration in the asyncio documentation. (#5964)Joongi Kim2018-03-031-1/+1
* bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)Yury Selivanov2017-12-231-0/+6
* bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799)Andrew Svetlov2017-12-161-0/+22
* bpo-32311: Implement asyncio.create_task() shortcut (#4848)Andrew Svetlov2017-12-151-4/+21
* bpo-32314: Implement asyncio.run() (#4852)Yury Selivanov2017-12-141-9/+22
* bpo-32258: Replace 'yield from' to 'await' in asyncio docs (#4779)Andrew Svetlov2017-12-111-6/+6
* bpo-32272: Remove asyncio.async() function. (#4784)Yury Selivanov2017-12-111-6/+0
* bpo-31960: Fix asyncio.Future documentation for thread (un)safety. (#4319)Antoine Pitrou2017-11-071-1/+1
* Fix miscellaneous typos (#4275)luzpaz2017-11-051-1/+1
* Add the link to asyncio source code in the docs (GH-2373)lf2017-07-251-0/+4
* bpo-24755: Document asyncio.wrap_future (GH-603)adisbladis2017-06-091-0/+5
* Issue #29441: Update examples to use async and await keywords in asyncio-task...Berker Peksag2017-02-071-17/+4
* Issue #29407: Remove redundant ensure_future() calls in factorial exampleBerker Peksag2017-02-011-8/+7
* Issue #19795: Improved more markups of True/False.Serhiy Storchaka2016-10-191-2/+2
* Issue #28348: Fix typo in asyncio.Task() documentationBerker Peksag2016-10-041-1/+1
* Issue #27700: Document AbstractEventLoop, not BaseEventLoop.Guido van Rossum2016-08-081-11/+11
* Use asyncio.gather instead of asyncio.wait in example.Andrew Svetlov2016-08-081-1/+1
* asyncio: Remove asyncio.timeout() context manager.Yury Selivanov2016-06-081-16/+0
* Fix typoZachary Ware2016-06-011-1/+1
* docs: Update asyncio docs & whatsnewYury Selivanov2016-05-161-0/+2
* Document None as timeout for asyncio.timeout()Andrew Svetlov2016-03-291-0/+2
* Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-101-1/+1
* Fix versionadded to use 3.5.1 only for 3.5 branchAndrew Svetlov2016-01-111-1/+1
* merge 3.4Andrew Svetlov2016-01-111-48/+64
|\
| * Document asyncio.timeout()Andrew Svetlov2016-01-111-46/+63
* | docs/asyncio: Update ensure_future & run_coroutine_threadsafe docsYury Selivanov2015-12-151-1/+4
* | Merge 3.4Yury Selivanov2015-11-181-1/+1
|\ \ | |/
| * asyncio.docs: Fix versionaddedYury Selivanov2015-11-181-1/+1
* | Docs and one small improvement for issue #25304, by Vincent Michel. (Merge 3....Guido van Rossum2015-10-051-0/+39
|\ \ | |/
| * Docs and one small improvement for issue #25304, by Vincent Michel.Guido van Rossum2015-10-051-0/+39
* | Issue #24487: Rename async() -> ensure_future() in asyncio docs.Yury Selivanov2015-07-011-3/+3
* | Issue #24439: Improve PEP 492 related docs.Yury Selivanov2015-06-241-32/+54
|/
* docs/asyncio: Document new ensure_future() and deprecated async()Yury Selivanov2015-05-111-6/+14
* Issue #23219: Update asyncio.wait_for() documentationVictor Stinner2015-04-031-0/+5
* asyncio: add a note about (non) thread safety in each classVictor Stinner2015-02-251-0/+4
* asyncio doc: annotate coroutine on coroutine functions and methodsVictor Stinner2015-02-121-3/+5
* Closes #22475: asyncio doc, fix Task.get_stack() docVictor Stinner2014-12-021-1/+1
* Close #22473: asyncio doc: rephrase Future with run_forever() exampleVictor Stinner2014-12-021-8/+3
* asyncio doc: explain how to pass keywords to callbacks (functools.partial)Victor Stinner2014-11-281-0/+5
* asyncio doc: write simpler examples to introduce asyncioVictor Stinner2014-10-151-13/+43