index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Doc
/
library
/
asyncio-task.rst
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-40967: Remove deprecated asyncio.Task.current_task() and asyncio.Task.all...
Rémi Lapeyre
2020-07-02
1
-25/+0
*
Fix asyncio.to_thread() documented return type (GH-20547)
Kyle Stanley
2020-05-31
1
-2/+1
*
bpo-40405: Fix asyncio.as_completed docs (GH-19753)
Bar Harel
2020-05-23
1
-5/+5
*
bpo-32309: Add support for contextvars in asyncio.to_thread() (GH-20278)
Kyle Stanley
2020-05-21
1
-1/+5
*
bpo-32309: Implement asyncio.to_thread() (GH-20143)
Kyle Stanley
2020-05-19
1
-0/+56
*
bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)
Chris Jerdonek
2020-05-15
1
-1/+4
*
bpo-40607: Reraise exception during task cancelation in asyncio.wait_for() (G...
romasku
2020-05-15
1
-1/+2
*
bpo-34790: add version of removal of explicit passing of coros to `asyncio.wa...
jack1142
2020-05-13
1
-1/+1
*
bpo-40499: Mention that asyncio.wait() needs a non-empty aws set (GH-19900)
Joel Rosdahl
2020-05-04
1
-0/+2
*
docs: Add asyncio source code links (GH-16640)
Kyle Stanley
2019-10-10
1
-3/+7
*
Fix and improve `asyncio.run()` docs (GH-16403)
Kyle Stanley
2019-10-01
1
-4/+2
*
bpo-38260: Add Docs on asyncio.run (GH-16337)
Emmanuel Arias
2019-09-25
1
-0/+12
*
Doc: Remove provisional note for asyncio.run() (GH-16310)
Kyle Stanley
2019-09-20
1
-2/+0
*
bpo-34037: Fix test_asyncio failure and add loop.shutdown_default_executor() ...
Kyle Stanley
2019-09-19
1
-2/+4
*
bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)
Andrew Svetlov
2019-09-12
1
-10/+23
*
bpo-36999: Add asyncio.Task.get_coro() (GH-13680)
Alex Grönholm
2019-05-30
1
-0/+6
*
bpo-36932: use proper deprecation-removed directive (GH-13349)
Matthias Bussonnier
2019-05-21
1
-15/+22
*
Orthographical fix (GH-13418)
Boštjan Mejak
2019-05-19
1
-1/+1
*
bpo-36921: Deprecate @coroutine for sake of async def (GH-13346)
Andrew Svetlov
2019-05-16
1
-3/+4
*
bpo-35579: Fix typo in in asyncio-task documentation (GH-11321)
Vaibhav Gupta
2018-12-26
1
-1/+1
*
Use f-strings in asyncio-task code examples (GH-10035)
Mariatta
2018-10-24
1
-6/+6
*
bpo-34476: Document that asyncio.sleep() always suspends. (#9643)
Hrvoje Nikšić
2018-10-01
1
-0/+3
*
bpo-34802: Fix asyncio.iscoroutine() docs (GH-9611)
Yury Selivanov
2018-09-27
1
-2/+1
*
asyncio/docs: Replace Python 4.0 -> 3.10 (GH-9579)
Yury Selivanov
2018-09-25
1
-5/+5
*
bpo-34790: [docs] Passing coroutines to asyncio.wait() can be confusing. (GH-...
Yury Selivanov
2018-09-25
1
-4/+36
*
bpo-33649: Fix gather() docs; fix title; few other nits. (GH-9475)
Yury Selivanov
2018-09-21
1
-11/+15
*
bpo-33649: More improvements (GH-9439)
Yury Selivanov
2018-09-20
1
-43/+131
*
bpo-33649: Add a high-level section about Futures; few quick fixes (GH-9403)
Yury Selivanov
2018-09-18
1
-43/+124
*
bpo-33649: Fix markup; add another note that asyncio.run is 3.7+ (GH-9389)
Yury Selivanov
2018-09-18
1
-1/+2
*
Fix syntax error on Asyncio example in doc (GH-9387)
Miguel Ángel García
2018-09-18
1
-1/+1
*
Change "set_after" reference to `say_after`. (GH-9384)
Danny Hermes
2018-09-18
1
-1/+1
*
bpo-33649: A copy-editing pass on asyncio documentation (GH-9376)
Elvis Pranskevichus
2018-09-17
1
-26/+26
*
bpo-33649: Add low-level APIs index. (GH-9364)
Yury Selivanov
2018-09-17
1
-2/+2
*
bpo-33649: Add high-level APIs cheat-sheet (GH-9319)
Yury Selivanov
2018-09-14
1
-1/+7
*
bpo-33649: Refresh Tasks and Futures pages (#9314)
Yury Selivanov
2018-09-14
1
-571/+474
*
bpo-33649: First asyncio docs improvement pass (GH-9142)
Yury Selivanov
2018-09-11
1
-31/+11
*
bpo-34270: Make it possible to name asyncio tasks (GH-8547)
Alex Grönholm
2018-08-08
1
-3/+33
*
Fix typo introduced in GH-7217 (#7230)
Elvis Pranskevichus
2018-05-30
1
-1/+1
*
bpo-23859: Document that asyncio.wait() does not cancel its futures (#7217)
Elvis Pranskevichus
2018-05-29
1
-0/+3
*
bpo-32751: Wait for task cancellation in asyncio.wait_for() (GH-7216)
Elvis Pranskevichus
2018-05-29
1
-1/+8
*
bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (G...
Yury Selivanov
2018-05-29
1
-0/+4
*
bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174)
Yury Selivanov
2018-05-28
1
-2/+5
*
bpo-32436: Document PEP 567 changes to asyncio. (GH-7073)
Yury Selivanov
2018-05-23
1
-2/+17
*
bpo-32996: The bulk of What's New in Python 3.7 (GH-6978)
Elvis Pranskevichus
2018-05-20
1
-1/+1
*
asyncio/docs: Mark asyncio.run() as provisional in 3.7. (#6946)
Yury Selivanov
2018-05-17
1
-0/+2
*
Fix docs markup for asyncio current_task() and all_tasks() (#6089)
Andrew Svetlov
2018-03-12
1
-2/+2
*
Fix missing coroutine declaration in the asyncio documentation. (#5964)
Joongi Kim
2018-03-03
1
-1/+1
*
bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)
Yury Selivanov
2017-12-23
1
-0/+6
*
bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799)
Andrew Svetlov
2017-12-16
1
-0/+22
*
bpo-32311: Implement asyncio.create_task() shortcut (#4848)
Andrew Svetlov
2017-12-15
1
-4/+21
[next]