summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-task.rst
Commit message (Expand)AuthorAgeFilesLines
* 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
* asyncio doc: more explicit doc for async()Victor Stinner2014-10-121-1/+2
* asyncio doc: cleanup Hello World examplesVictor Stinner2014-10-111-2/+3
* Revert #22251Berker Peksag2014-09-271-1/+0
* Issue #22251: Fix ReST markup to avoid errors building docs.Berker Peksag2014-09-271-0/+1
* Improve English phrasing in asyncio task docs.R David Murray2014-09-241-9/+9
* Issue #22112, asyncio doc: replace loop.create_task(coro) withVictor Stinner2014-08-101-12/+16
* Englich grammar nit.Terry Jan Reedy2014-07-241-1/+1
* Update asyncio documentationVictor Stinner2014-07-081-17/+42
* Closes #21921: Fix ResourceWarning in the asyncio examples: close the eventVictor Stinner2014-07-051-1/+4