1. cca4eec bpo-34270: Make it possible to name asyncio tasks (GH-8547) by Alex Grönholm · 6 years ago
  2. dec947c Fix typo introduced in GH-7217 (#7230) by Elvis Pranskevichus · 6 years ago
  3. f9aeca2 bpo-23859: Document that asyncio.wait() does not cancel its futures (#7217) by Elvis Pranskevichus · 6 years ago
  4. e2b340a bpo-32751: Wait for task cancellation in asyncio.wait_for() (GH-7216) by Elvis Pranskevichus · 6 years ago
  5. 863b674 bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (GH-7209) by Yury Selivanov · 6 years ago
  6. 416c1eb bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174) by Yury Selivanov · 6 years ago
  7. 28b9178 bpo-32436: Document PEP 567 changes to asyncio. (GH-7073) by Yury Selivanov · 6 years ago
  8. 63536bd bpo-32996: The bulk of What's New in Python 3.7 (GH-6978) by Elvis Pranskevichus · 6 years ago
  9. d8d715f asyncio/docs: Mark asyncio.run() as provisional in 3.7. (#6946) by Yury Selivanov · 6 years ago
  10. b21505e Fix docs markup for asyncio current_task() and all_tasks() (#6089) by Andrew Svetlov · 6 years ago
  11. 13cfd57 Fix missing coroutine declaration in the asyncio documentation. (#5964) by Joongi Kim · 6 years ago
  12. ca9b36c bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992) by Yury Selivanov · 7 years ago
  13. 44d1a59 bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799) by Andrew Svetlov · 7 years ago
  14. f74ef45 bpo-32311: Implement asyncio.create_task() shortcut (#4848) by Andrew Svetlov · 7 years ago
  15. 02a0a19 bpo-32314: Implement asyncio.run() (#4852) by Yury Selivanov · 7 years ago
  16. 8874342 bpo-32258: Replace 'yield from' to 'await' in asyncio docs (#4779) by Andrew Svetlov · 7 years ago
  17. 9edad3c bpo-32272: Remove asyncio.async() function. (#4784) by Yury Selivanov · 7 years ago
  18. 22b1128 bpo-31960: Fix asyncio.Future documentation for thread (un)safety. (#4319) by Antoine Pitrou · 7 years ago
  19. a5293b4 Fix miscellaneous typos (#4275) by luzpaz · 7 years ago
  20. 627d2c8 Add the link to asyncio source code in the docs (GH-2373) by lf · 7 years ago
  21. 824f687 bpo-24755: Document asyncio.wrap_future (GH-603) by adisbladis · 7 years ago
  22. f592867 Issue #29441: Update examples to use async and await keywords in asyncio-task.rst by Berker Peksag · 8 years ago
  23. d5adb63 Issue #29407: Remove redundant ensure_future() calls in factorial example by Berker Peksag · 8 years ago
  24. 4adf01c Issue #19795: Improved more markups of True/False. by Serhiy Storchaka · 8 years ago
  25. 002b0a7 Issue #28348: Fix typo in asyncio.Task() documentation by Berker Peksag · 8 years ago
  26. f68afd8 Issue #27700: Document AbstractEventLoop, not BaseEventLoop. by Guido van Rossum · 8 years ago
  27. 4365b83 Use asyncio.gather instead of asyncio.wait in example. by Andrew Svetlov · 8 years ago
  28. c1cf296 asyncio: Remove asyncio.timeout() context manager. by Yury Selivanov · 8 years ago
  29. f9aff92 Fix typo by Zachary Ware · 8 years ago
  30. 950204d docs: Update asyncio docs & whatsnew by Yury Selivanov · 8 years ago
  31. 6f57424 Document None as timeout for asyncio.timeout() by Andrew Svetlov · 8 years ago
  32. c04fb56 Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar by Martin Panter · 9 years ago
  33. ea47134 Fix versionadded to use 3.5.1 only for 3.5 branch by Andrew Svetlov · 9 years ago
  34. 3af81f2 merge 3.4 by Andrew Svetlov · 9 years ago
  35. f124016 Document asyncio.timeout() by Andrew Svetlov · 9 years ago
  36. e319ab0 docs/asyncio: Update ensure_future & run_coroutine_threadsafe docs by Yury Selivanov · 9 years ago
  37. 6efc7e7 Merge 3.4 by Yury Selivanov · 9 years ago
  38. 01a65af asyncio.docs: Fix versionadded by Yury Selivanov · 9 years ago
  39. 5db034a Docs and one small improvement for issue #25304, by Vincent Michel. (Merge 3.4->3.5.) by Guido van Rossum · 9 years ago
  40. 601953b Docs and one small improvement for issue #25304, by Vincent Michel. by Guido van Rossum · 9 years ago
  41. 04356e1 Issue #24487: Rename async() -> ensure_future() in asyncio docs. by Yury Selivanov · 9 years ago
  42. 66f8828 Issue #24439: Improve PEP 492 related docs. by Yury Selivanov · 9 years ago
  43. d7e19bb docs/asyncio: Document new ensure_future() and deprecated async() by Yury Selivanov · 9 years ago
  44. 72dcb0a Issue #23219: Update asyncio.wait_for() documentation by Victor Stinner · 9 years ago
  45. 8370496 asyncio: add a note about (non) thread safety in each class by Victor Stinner · 9 years ago
  46. bdd574d asyncio doc: annotate coroutine on coroutine functions and methods by Victor Stinner · 9 years ago
  47. d87de83 Closes #22475: asyncio doc, fix Task.get_stack() doc by Victor Stinner · 10 years ago
  48. 039f703 Close #22473: asyncio doc: rephrase Future with run_forever() example by Victor Stinner · 10 years ago
  49. 8464c24 asyncio doc: explain how to pass keywords to callbacks (functools.partial) by Victor Stinner · 10 years ago
  50. 7f314ed asyncio doc: write simpler examples to introduce asyncio by Victor Stinner · 10 years ago
  51. 980dd84 asyncio doc: more explicit doc for async() by Victor Stinner · 10 years ago
  52. 6888b96 asyncio doc: cleanup Hello World examples by Victor Stinner · 10 years ago
  53. 9c1dba2 Revert #22251 by Berker Peksag · 10 years ago
  54. 3749404 Issue #22251: Fix ReST markup to avoid errors building docs. by Berker Peksag · 10 years ago
  55. 22dd833 Improve English phrasing in asyncio task docs. by R David Murray · 10 years ago
  56. 337e03f Issue #22112, asyncio doc: replace loop.create_task(coro) with by Victor Stinner · 10 years ago
  57. c935a95 Englich grammar nit. by Terry Jan Reedy · 10 years ago
  58. 530ef2f Update asyncio documentation by Victor Stinner · 10 years ago
  59. 63b21a8 Closes #21921: Fix ResourceWarning in the asyncio examples: close the event by Victor Stinner · 10 years ago
  60. db74d98 Issue #21596: asyncio.wait(): mention that the sequence of futures must not by Victor Stinner · 10 years ago
  61. 8d21357 Issue #21601: Document asyncio.Task.cancel(). Initial patch written by Vajrasky by Victor Stinner · 10 years ago
  62. 28d0ae48 Issue #21376: document asyncio.TimeoutError by Victor Stinner · 10 years ago
  63. 37f15bc asyncio.docs: Improve wordings; add a note to the Coroutines section. Issue #20706 by Yury Selivanov · 10 years ago
  64. 04e05da Close #20652: asyncio doc: close the event loop in run_forever() example. Fix by Victor Stinner · 10 years ago
  65. c9d1a6b merge by Brian Curtin · 11 years ago
  66. a1afeec Spelling corrections. Submitted to python-dev by python@mrabarnett.plus.com by Brian Curtin · 11 years ago
  67. 12c68b2 asyncio doc: fix gather() doc by Victor Stinner · 11 years ago
  68. 45b27ed asyncio doc: document the granularity of the event loop by Victor Stinner · 11 years ago
  69. 1ad5afc asyncio: document iscoroutine(), iscoroutinefunction() and wait_for() by Victor Stinner · 11 years ago
  70. f40c663 asyncio doc: close the loop at exit by Victor Stinner · 11 years ago
  71. 029981b Clarify what the loop arguments means for functions listed in 18.5.2.5 by Eli Bendersky · 11 years ago
  72. 2d26af8 Explain the 'result' argument in asyncio.sleep by Eli Bendersky · 11 years ago
  73. 59759ff asyncio doc: replace "coroutine" with "coroutine object" or "coroutine function" by Victor Stinner · 11 years ago
  74. db39a0d asyncio: add a new "Develop with asyncio" section to the documentation by Victor Stinner · 11 years ago
  75. 6a14381 Fix Sphinx markup for asyncio modules so :mod:`asyncio` links work. by R David Murray · 11 years ago
  76. 86e139a asyncio doc: explain where does the task come from. by Victor Stinner · 11 years ago
  77. 1c4b892 Add a sequence diagram for the chained coroutines example by Victor Stinner · 11 years ago
  78. a6fa153 asyncio doc: simplify task example by Victor Stinner · 11 years ago
  79. 0839ed4 asyncio doc: don't document Task.cancel(), already documented in Future.cancel() by Victor Stinner · 11 years ago
  80. 742520b asyncio: document Task.current_task() by Victor Stinner · 11 years ago
  81. fc25d62 asyncio: don't document private functions by Victor Stinner · 11 years ago
  82. 34f2946 asyncio: fix 2nd task example by Victor Stinner · 11 years ago
  83. b69d62d assyncio doc: rewrite, improve and move coroutine, Future and Task examples by Victor Stinner · 11 years ago
  84. d8f11e9 asyncio: another Future example using add_done_callback() by Victor Stinner · 11 years ago
  85. 45c2fd9 asyncio doc: add an example with Future by Victor Stinner · 11 years ago
  86. 99c2ab4 asyncio doc: oh, asyncio module has its own Future class by Victor Stinner · 11 years ago
  87. c6fba92 asyncio doc: add one more example of coroutines by Victor Stinner · 11 years ago
  88. 933a8c8 asyncio doc: reorder methods; typo by Victor Stinner · 11 years ago
  89. 3e09e32 asyncio doc: move coroutine example to the Task page by Victor Stinner · 11 years ago
  90. ea3183f Split asyncio documentation into subfiles by Victor Stinner · 11 years ago