summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-task.rst
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-101100: Fix sphinx warnings in `asyncio-task.rst` (GH-114469) (#114...Miss Islington (bot)2024-01-241-17/+16
* [3.11] Revert "Fix a code snippet typo in asyncio docs (GH-108427)" (GH-11127...Miss Islington (bot)2023-10-241-1/+1
* [3.11] Fix a code snippet typo in asyncio docs (GH-108427) (#111244)Miss Islington (bot)2023-10-241-1/+1
* [3.11] gh-110703: Add asyncio.wait_for() change notes for 3.11 (GH-110818) (#...Miss Islington (bot)2023-10-131-3/+3
* [3.11] gh-107980: fix doc role for asyncio.timeouts (GH-108126) (#108153)Miss Islington (bot)2023-08-201-3/+3
* [3.11] Refer to `TimeoutError` instead of `asyncio.TimeoutError` in `asyncio-...Miss Islington (bot)2023-06-281-4/+4
* [3.11] gh-104254: Document the optional keyword-only "context" argument to Ta...Miss Islington (bot)2023-05-071-4/+8
* [3.11] GH-78530: clarify docs for generators yielding tasks in `asyncio.wait`...Kumar Aditya2023-04-241-2/+3
* [3.11] gh-101100: Document PyObject_ClearWeakRefs, gzip's name, and asyncio.i...Hugo van Kemenade2023-03-251-0/+7
* gh-102810 Improve the sphinx docs for `asyncio.Timeout` (GH-102934)Miss Islington (bot)2023-03-231-15/+9
* gh-102780: Fix uncancel() call in asyncio timeouts (GH-102815)Miss Islington (bot)2023-03-221-3/+13
* doc: Remove a duplicate 'versionchanged' in library/asyncio-task (gh-102677)Miss Islington (bot)2023-03-141-3/+0
* [3.11] gh-97725: Fix documentation for the default file of `asyncio.Task.prin...Oleg Iarygin2023-02-081-1/+1
* gh-101498 : Fix asyncio.Timeout example in docs (GH-101499)Miss Islington (bot)2023-02-011-1/+1
* Fixes typo in asyncio.TaskGroup context manager code example (GH-101449)Miss Islington (bot)2023-01-311-1/+1
* [3.11] gh-85073: Add some missing links to source (GH-99363) (#99586)Miss Islington (bot)2022-11-251-0/+8
* [3.11] Docs: Fix backtick errors found by sphinx-lint (GH-97998) (#98371)C.A.M. Gerlach2022-10-171-5/+5
* GH-90985: Revert "Deprecate passing a message into cancel()" (GH-97999)Miss Islington (bot)2022-10-071-4/+2
* gh-90908: Document asyncio.Task.cancelling() and asyncio.Task.uncancel() (GH-...Miss Islington (bot)2022-10-011-74/+128
* gh-94972: document that shield users need to keep a reference to their task (...Miss Islington (bot)2022-09-101-4/+13
* Docs: Fix count of bullets in asyncio-task.rst (GH-96307) (#96330)Miss Islington (bot)2022-08-271-1/+1
* gh-95051: ensure that timeouts scheduled with `asyncio.Timeout` that have alr...Miss Islington (bot)2022-07-261-0/+3
* GH-46771: docs for asyncio.timeout and task cancellation (GH-94794)Miss Islington (bot)2022-07-151-0/+134
* GH-94398: TaskGroup: Fail create_task() during shutdown (GH-94400) (GH-94463)Miss Islington (bot)2022-06-301-0/+1
* GH-90908: Document asyncio.TaskGroup (GH-94359) (GH-94456)Miss Islington (bot)2022-06-301-2/+101
* gh-88831: In docs for asyncio.create_task, explain why strong references to t...Miss Islington (bot)2022-06-071-1/+18
* gh-92223: Remove pre-Python 3.7 alternative in asyncio docs (#92224)Sebastian Rittau2022-05-051-16/+1
* bpo-47062: Implement asyncio.Runner context manager (GH-31799)Andrew Svetlov2022-03-241-37/+0
* bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...Andrew Svetlov2022-03-231-2/+4
* bpo-34790: Remove passing coroutine objects to asyncio.wait() (GH-31964)Andrew Svetlov2022-03-171-43/+3
* bpo-46994: Accept explicit contextvars.Context in asyncio create_task() API (...Andrew Svetlov2022-03-141-1/+8
* bpo-45390: Propagate CancelledError's message from cancelled task to its awai...Andrew Svetlov2022-02-211-0/+3
* bpo-46777: Fix incorrect use of directives in asyncio documentation (GH-31388)Serhiy Storchaka2022-02-181-59/+24
* bpo-42413: Replace `concurrent.futures.TimeoutError` and `asyncio.TimeoutErro...Kumar Aditya2021-12-191-6/+6
* removal of duplicated text paragraph (#29666)Taras Sereda2021-12-061-6/+0
* Save a reference for ensure_future and create_task (GH-29163)Joannah Nanjekye2021-11-151-0/+5
* correct spelling (GH-27076)Sondre Lillebø Gundersen2021-07-191-1/+1
* Doc: Fix wrong exception used in example. (GH-26572)Julien Palard2021-07-081-1/+1
* bpo-43216: Remove @asyncio.coroutine (GH-26369)Illia Volochii2021-07-011-60/+0
* bpo-42392: [docs] Add deprecated-removed loop labels for asyncio (GH-26357)Ken Jin2021-05-261-0/+69
* Updated code example for asyncio.gather (GH-20604)josephernest2021-05-141-8/+11
* bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...Serhiy Storchaka2021-04-251-0/+17
* bpo-42783: Documentation for asyncio.sleep(0) (#24002)Simon Willison2021-01-071-0/+4
* [doc] Fix erroneous backslashes in signatures and names (GH-23658)Andre Delfino2020-12-171-9/+9
* bpo-42392: Remove deprecated loop parameter from docs (GH-23552)Yurii Karabas2020-11-291-26/+6
* Typo (#23482)Jesús Cea2020-11-231-1/+1
* bpo-42230: Improve asyncio documentation regarding accepting sets vs iterable...Jakub Stasiak2020-11-021-4/+4
* bpo-37703: improve asyncio.gather documentation regarding cancellation (GH-15...Vinay Sharma2020-07-201-0/+8
* bpo-40967: Remove deprecated asyncio.Task.current_task() and asyncio.Task.all...Rémi Lapeyre2020-07-021-25/+0
* Fix asyncio.to_thread() documented return type (GH-20547)Kyle Stanley2020-05-311-2/+1