summaryrefslogtreecommitdiff
path: root/Doc/library/asyncio-task.rst
Commit message (Expand)AuthorAgeFilesLines
* 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-35/+57
|\ \ | |/ |/|
| * Docs and one small improvement for issue #25304, by Vincent Michel. (Merge 3....Guido van Rossum2015-10-051-0/+39
| |\
| * | Issue #24487: Rename async() -> ensure_future() in asyncio docs.Yury Selivanov2015-06-301-3/+3
| * | Issue #24439: Improve PEP 492 related docs.Yury Selivanov2015-06-241-32/+54
* | | asyncio.docs: Fix versionaddedYury Selivanov2015-11-181-1/+1
| |/ |/|
* | Docs and one small improvement for issue #25304, by Vincent Michel.Guido van Rossum2015-10-051-0/+39
|/
* 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-281-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-111-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
* Issue #21596: asyncio.wait(): mention that the sequence of futures must notVictor Stinner2014-06-101-0/+2
* Issue #21601: Document asyncio.Task.cancel(). Initial patch written by VajraskyVictor Stinner2014-06-021-1/+21
* Issue #21376: document asyncio.TimeoutErrorVictor Stinner2014-05-291-4/+17
* asyncio.docs: Improve wordings; add a note to the Coroutines section. Issue #...Yury Selivanov2014-02-201-2/+12
* Close #20652: asyncio doc: close the event loop in run_forever() example. FixVictor Stinner2014-02-171-3/+6
* mergeBrian Curtin2014-02-081-2/+2
|\
| * Spelling corrections. Submitted to python-dev by python@mrabarnett.plus.comBrian Curtin2014-02-081-2/+2
* | asyncio doc: fix gather() docVictor Stinner2014-02-091-1/+1
|/
* asyncio doc: document the granularity of the event loopVictor Stinner2014-02-011-0/+3
* asyncio: document iscoroutine(), iscoroutinefunction() and wait_for()Victor Stinner2014-01-301-2/+28
* asyncio doc: close the loop at exitVictor Stinner2014-01-281-0/+3
* Clarify what the loop arguments means for functions listed in 18.5.2.5Eli Bendersky2014-01-201-0/+6
* Explain the 'result' argument in asyncio.sleepEli Bendersky2014-01-201-1/+2