1. 89aa7f0 bpo-34790: Implement deprecation of passing coroutines to asyncio.wait() (GH-16977) by Kyle Stanley · 5 years ago
  2. dec3672 bpo-38978: Implement __class_getitem__ for asyncio objects (GH-17491) by Batuhan Taşkaya · 6 years ago
  3. edad4d8 bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330) by Yury Selivanov · 6 years ago
  4. a488879 bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033) by Andrew Svetlov · 6 years ago
  5. 65aa64f bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971) by Andrew Svetlov · 6 years ago
  6. 98ef920 bpo-36999: Add asyncio.Task.get_coro() (GH-13680) by Alex Grönholm · 6 years ago
  7. 431b540 bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528) by Yury Selivanov · 6 years ago
  8. d0ebf13 bpo-36932: use proper deprecation-removed directive (GH-13349) by Matthias Bussonnier · 6 years ago
  9. 68b34a7 bpo-36921: Deprecate @coroutine for sake of async def (GH-13346) by Andrew Svetlov · 6 years ago
  10. b35acc5 bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-10340) by Romain Picard · 6 years ago
  11. 4737b92 bpo-24638: Improve the error message in asyncio.ensure_future() (#12848) by Zackery Spytz · 6 years ago
  12. c1964e9 bpo-36613: call remove_done_callback if exception (GH-12800) by gescheit · 6 years ago
  13. c5c6cda asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494) by Inada Naoki · 6 years ago
  14. 97cf082 bpo-34970: Protect tasks weak set manipulation in asyncio.all_tasks() (GH-9837) by Andrew Svetlov · 7 years ago
  15. fad6af2 asyncio/docs: Replace Python 4.0 -> 3.10 (GH-9579) by Yury Selivanov · 7 years ago
  16. 558c49b bpo-34728: Remove deprecate *loop* argument in asyncio.sleep (GH-9415) by João Júnior · 7 years ago
  17. 0baa72f bpo-34622: Extract asyncio exceptions into a separate module (GH-9141) by Andrew Svetlov · 7 years ago
  18. cca4eec bpo-34270: Make it possible to name asyncio tasks (GH-8547) by Alex Grönholm · 7 years ago
  19. e2b340a bpo-32751: Wait for task cancellation in asyncio.wait_for() (GH-7216) by Elvis Pranskevichus · 7 years ago
  20. 863b674 bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (GH-7209) by Yury Selivanov · 7 years ago
  21. 416c1eb bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174) by Yury Selivanov · 7 years ago
  22. e549c4b bpo-33505: Optimize asyncio.ensure_future by reordering if conditions (GH-6836) by jimmylai · 7 years ago
  23. 6655354 bpo-33584: Fix several minor bugs in asyncio. (GH-7003) by Serhiy Storchaka · 7 years ago
  24. 22feeb8 bpo-32643: Drop support for a few private Task and Future APIs. (#5293) by Yury Selivanov · 7 years ago
  25. f23746a bpo-32436: Implement PEP 567 (#5027) by Yury Selivanov · 7 years ago
  26. 0cf16f9 bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923) by Yury Selivanov · 8 years ago
  27. ca9b36c bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992) by Yury Selivanov · 8 years ago
  28. 36c2c04 bpo-32355: Optimize asyncio.gather() (#4913) by Yury Selivanov · 8 years ago
  29. 5382c05 bpo-32351: Use fastpath in asyncio.sleep if delay<0 (#4908) by Andrew Svetlov · 8 years ago
  30. 44d1a59 bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799) by Andrew Svetlov · 8 years ago
  31. f74ef45 bpo-32311: Implement asyncio.create_task() shortcut (#4848) by Andrew Svetlov · 8 years ago
  32. 9edad3c bpo-32272: Remove asyncio.async() function. (#4784) by Yury Selivanov · 8 years ago
  33. 6370f34 bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775) by Yury Selivanov · 8 years ago
  34. 5f841b5 bpo-32193: Convert asyncio to async/await usage (#4753) by Andrew Svetlov · 8 years ago
  35. 3f438a9 asyncio: Remove asyncio/compat.py (#4606) by Victor Stinner · 8 years ago
  36. 4d07189 bpo-31556: asyncio.wait_for can cancel futures faster with timeout <= 0 (#3703) by Victor K · 8 years ago
  37. 7ce1c6f bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050) by Yury Selivanov · 8 years ago
  38. 991adca bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1097) by INADA Naoki · 8 years ago
  39. 3e2ad8e bpo-29617: Remove Python 3.3 support from asyncio (GH-232) by INADA Naoki · 8 years ago
  40. ae5b326 bpo-30098: Clarify that run_coroutine_threadsafe expects asyncio.Future (GH-1170) by Charles Renwick · 8 years ago
  41. 6138432 Issue #29314: Merge with 3.5 by Mariatta Wijaya · 8 years ago
  42. 4e7ff8b Issue #29314: Set the stacklevel to two in asyncio.async() Deprecation Warning by Mariatta Wijaya · 8 years ago
  43. a0c1ba6 Issue #28544: Implement asyncio.Task in C. by Yury Selivanov · 9 years ago
  44. 3d67615 Issue #26923: Fix asyncio.Gather to refuse being cancelled once all children are done. by Yury Selivanov · 9 years ago
  45. 4145c83 Issue #27972: Prohibit Tasks to await on themselves. by Yury Selivanov · 9 years ago
  46. e3c65a7 Misc asyncio improvements from upstream by Guido van Rossum · 9 years ago
  47. 4357cf6 Another asyncio sync. by Yury Selivanov · 9 years ago
  48. 7b3b3dc Merge asyncio upstream. by Guido van Rossum · 9 years ago
  49. 1140a03 Rename Future._blocking to _asyncio_future_blocking. by Guido van Rossum · 9 years ago
  50. c1cf296 asyncio: Remove asyncio.timeout() context manager. by Yury Selivanov · 9 years ago
  51. 7661db6 Issue #27041: asyncio: Add loop.create_future method by Yury Selivanov · 9 years ago
  52. 2ba8ece asyncio: allow None as wait timeout by Victor Stinner · 9 years ago
  53. 9d976fa Sync with asyncio by Andrew Svetlov · 9 years ago
  54. c07b16b Sync with asyncio repo by Andrew Svetlov · 9 years ago
  55. 0ac3a0c asyncio: Make Tasks check if Futures are attached to the same event loop by Yury Selivanov · 10 years ago
  56. d59bba8 asyncio: Drop "value" parameter from Task._step method. by Yury Selivanov · 10 years ago
  57. 5d7e3b6 asyncio: Cleanup Future API by Yury Selivanov · 10 years ago
  58. 0013cce asyncio: Sync with github by Yury Selivanov · 10 years ago
  59. a4afc48 asyncio: Optimize Task._wakeup by Yury Selivanov · 10 years ago
  60. ade0412 asyncio: Optimize asyncio.sleep(0) by Yury Selivanov · 10 years ago
  61. 601953b Docs and one small improvement for issue #25304, by Vincent Michel. by Guido van Rossum · 10 years ago
  62. 841d9ee Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel. by Guido van Rossum · 10 years ago
  63. 620279b asyncio: ensure_future() now understands awaitables by Yury Selivanov · 10 years ago
  64. 2339833 Issue #24867: Fix Task.get_stack() for 'async def' coroutines by Yury Selivanov · 10 years ago
  65. 4c0a09a Revert da29a94367b2 by Yury Selivanov · 10 years ago
  66. 6b3f29c asyncio: Fix code style by Yury Selivanov · 10 years ago
  67. eaf16ab asyncio: sync with github by Victor Stinner · 10 years ago
  68. 71080fc asyncio: Add asyncio.compat module by Victor Stinner · 10 years ago
  69. 1ad08a5 asyncio: Drop some useless code from tasks.py. by Yury Selivanov · 10 years ago
  70. 1af2bf7 asyncio: Support PEP 492. Issue #24017. by Yury Selivanov · 10 years ago
  71. 59eb9a4 asyncio: async() function is deprecated in favour of ensure_future(). by Yury Selivanov · 10 years ago
  72. 2934262 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  73. 922bc2c Closes #23219: cancelling asyncio.wait_for() now cancels the task by Victor Stinner · 10 years ago
  74. 3531d90 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  75. 15cc678 asyncio: Truncate to 80 columns by Victor Stinner · 10 years ago
  76. fe22e09 asyncio: Initialize more Future and Task attributes in the class definition to by Victor Stinner · 11 years ago
  77. d87de83 Closes #22475: asyncio doc, fix Task.get_stack() doc by Victor Stinner · 11 years ago
  78. 8e069d5 Apply asyncio Task English fixes to docstrings as well. by R David Murray · 11 years ago
  79. 59e0802 asyncio, Tulip issue 201: Fix a race condition in wait_for() by Victor Stinner · 11 years ago
  80. 313a980 asyncio: sync with Tulip by Victor Stinner · 11 years ago
  81. e931f7b Issue #21163: Fix "destroy pending task" warning in test_wait_errors() by Victor Stinner · 11 years ago
  82. f03b3c7 Issue #21163, asyncio: Ignore "destroy pending task" warnings for private tasks by Victor Stinner · 11 years ago
  83. 770e48d asyncio: sync with Tulip by Victor Stinner · 11 years ago
  84. 737c34f asyncio: sync with Tulip by Victor Stinner · 11 years ago
  85. c39ba7d asyncio: sync with Tulip by Victor Stinner · 11 years ago
  86. 896a25a asyncio: sync with Tulip by Victor Stinner · 11 years ago
  87. a9acbe8 Closes #21886, #21447: Fix a race condition in asyncio when setting the result by Victor Stinner · 11 years ago
  88. 2dba23a asyncio: sync with Tulip by Victor Stinner · 11 years ago
  89. 98b6391 Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly() by Victor Stinner · 11 years ago
  90. f951d28 asyncio: sync with Tulip, add a new asyncio.coroutines module by Victor Stinner · 11 years ago
  91. 80f53aa asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and by Victor Stinner · 11 years ago
  92. bbd96c6 asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutine by Victor Stinner · 11 years ago
  93. 975735f asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandle by Victor Stinner · 11 years ago
  94. df29c4a asyncio: repr(Task) now also contains the line number even if the coroutine is by Victor Stinner · 11 years ago
  95. a02f81f asyncio: Log an error if a Task is destroyed while it is still pending by Victor Stinner · 11 years ago
  96. 8d3e02e asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator on by Victor Stinner · 11 years ago
  97. bc434e2 asyncio: Task.__repr__() now also handles CoroWrapper by Victor Stinner · 11 years ago
  98. 307bccc asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task) by Victor Stinner · 11 years ago
  99. db74d98 Issue #21596: asyncio.wait(): mention that the sequence of futures must not by Victor Stinner · 11 years ago
  100. 8d21357 Issue #21601: Document asyncio.Task.cancel(). Initial patch written by Vajrasky by Victor Stinner · 11 years ago