1. 97cf082 bpo-34970: Protect tasks weak set manipulation in asyncio.all_tasks() (GH-9837) by Andrew Svetlov · 6 years ago
  2. fad6af2 asyncio/docs: Replace Python 4.0 -> 3.10 (GH-9579) by Yury Selivanov · 6 years ago
  3. 558c49b bpo-34728: Remove deprecate *loop* argument in asyncio.sleep (GH-9415) by João Júnior · 6 years ago
  4. 0baa72f bpo-34622: Extract asyncio exceptions into a separate module (GH-9141) by Andrew Svetlov · 6 years ago
  5. cca4eec bpo-34270: Make it possible to name asyncio tasks (GH-8547) by Alex Grönholm · 6 years ago
  6. e2b340a bpo-32751: Wait for task cancellation in asyncio.wait_for() (GH-7216) by Elvis Pranskevichus · 6 years ago
  7. 863b674 bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (GH-7209) by Yury Selivanov · 6 years ago
  8. 416c1eb bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174) by Yury Selivanov · 6 years ago
  9. e549c4b bpo-33505: Optimize asyncio.ensure_future by reordering if conditions (GH-6836) by jimmylai · 6 years ago
  10. 6655354 bpo-33584: Fix several minor bugs in asyncio. (GH-7003) by Serhiy Storchaka · 6 years ago
  11. 22feeb8 bpo-32643: Drop support for a few private Task and Future APIs. (#5293) by Yury Selivanov · 7 years ago
  12. f23746a bpo-32436: Implement PEP 567 (#5027) by Yury Selivanov · 7 years ago
  13. 0cf16f9 bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923) by Yury Selivanov · 7 years ago
  14. ca9b36c bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992) by Yury Selivanov · 7 years ago
  15. 36c2c04 bpo-32355: Optimize asyncio.gather() (#4913) by Yury Selivanov · 7 years ago
  16. 5382c05 bpo-32351: Use fastpath in asyncio.sleep if delay<0 (#4908) by Andrew Svetlov · 7 years ago
  17. 44d1a59 bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799) by Andrew Svetlov · 7 years ago
  18. f74ef45 bpo-32311: Implement asyncio.create_task() shortcut (#4848) by Andrew Svetlov · 7 years ago
  19. 9edad3c bpo-32272: Remove asyncio.async() function. (#4784) by Yury Selivanov · 7 years ago
  20. 6370f34 bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775) by Yury Selivanov · 7 years ago
  21. 5f841b5 bpo-32193: Convert asyncio to async/await usage (#4753) by Andrew Svetlov · 7 years ago
  22. 3f438a9 asyncio: Remove asyncio/compat.py (#4606) by Victor Stinner · 7 years ago
  23. 4d07189 bpo-31556: asyncio.wait_for can cancel futures faster with timeout <= 0 (#3703) by Victor K · 7 years ago
  24. 7ce1c6f bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050) by Yury Selivanov · 7 years ago
  25. 991adca bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1097) by INADA Naoki · 7 years ago
  26. 3e2ad8e bpo-29617: Remove Python 3.3 support from asyncio (GH-232) by INADA Naoki · 7 years ago
  27. ae5b326 bpo-30098: Clarify that run_coroutine_threadsafe expects asyncio.Future (GH-1170) by Charles Renwick · 7 years ago
  28. 6138432 Issue #29314: Merge with 3.5 by Mariatta Wijaya · 8 years ago
  29. 4e7ff8b Issue #29314: Set the stacklevel to two in asyncio.async() Deprecation Warning by Mariatta Wijaya · 8 years ago
  30. a0c1ba6 Issue #28544: Implement asyncio.Task in C. by Yury Selivanov · 8 years ago
  31. 3d67615 Issue #26923: Fix asyncio.Gather to refuse being cancelled once all children are done. by Yury Selivanov · 8 years ago
  32. 4145c83 Issue #27972: Prohibit Tasks to await on themselves. by Yury Selivanov · 8 years ago
  33. e3c65a7 Misc asyncio improvements from upstream by Guido van Rossum · 8 years ago
  34. 4357cf6 Another asyncio sync. by Yury Selivanov · 8 years ago
  35. 7b3b3dc Merge asyncio upstream. by Guido van Rossum · 8 years ago
  36. 1140a03 Rename Future._blocking to _asyncio_future_blocking. by Guido van Rossum · 8 years ago
  37. c1cf296 asyncio: Remove asyncio.timeout() context manager. by Yury Selivanov · 8 years ago
  38. 7661db6 Issue #27041: asyncio: Add loop.create_future method by Yury Selivanov · 8 years ago
  39. 2ba8ece asyncio: allow None as wait timeout by Victor Stinner · 9 years ago
  40. 9d976fa Sync with asyncio by Andrew Svetlov · 9 years ago
  41. c07b16b Sync with asyncio repo by Andrew Svetlov · 9 years ago
  42. 0ac3a0c asyncio: Make Tasks check if Futures are attached to the same event loop by Yury Selivanov · 9 years ago
  43. d59bba8 asyncio: Drop "value" parameter from Task._step method. by Yury Selivanov · 9 years ago
  44. 5d7e3b6 asyncio: Cleanup Future API by Yury Selivanov · 9 years ago
  45. 0013cce asyncio: Sync with github by Yury Selivanov · 9 years ago
  46. a4afc48 asyncio: Optimize Task._wakeup by Yury Selivanov · 9 years ago
  47. ade0412 asyncio: Optimize asyncio.sleep(0) by Yury Selivanov · 9 years ago
  48. 601953b Docs and one small improvement for issue #25304, by Vincent Michel. by Guido van Rossum · 9 years ago
  49. 841d9ee Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel. by Guido van Rossum · 9 years ago
  50. 620279b asyncio: ensure_future() now understands awaitables by Yury Selivanov · 9 years ago
  51. 2339833 Issue #24867: Fix Task.get_stack() for 'async def' coroutines by Yury Selivanov · 9 years ago
  52. 4c0a09a Revert da29a94367b2 by Yury Selivanov · 9 years ago
  53. 6b3f29c asyncio: Fix code style by Yury Selivanov · 9 years ago
  54. eaf16ab asyncio: sync with github by Victor Stinner · 9 years ago
  55. 71080fc asyncio: Add asyncio.compat module by Victor Stinner · 9 years ago
  56. 1ad08a5 asyncio: Drop some useless code from tasks.py. by Yury Selivanov · 9 years ago
  57. 1af2bf7 asyncio: Support PEP 492. Issue #24017. by Yury Selivanov · 9 years ago
  58. 59eb9a4 asyncio: async() function is deprecated in favour of ensure_future(). by Yury Selivanov · 9 years ago
  59. 2934262 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  60. 922bc2c Closes #23219: cancelling asyncio.wait_for() now cancels the task by Victor Stinner · 10 years ago
  61. 3531d90 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  62. 15cc678 asyncio: Truncate to 80 columns by Victor Stinner · 10 years ago
  63. fe22e09 asyncio: Initialize more Future and Task attributes in the class definition to by Victor Stinner · 10 years ago
  64. d87de83 Closes #22475: asyncio doc, fix Task.get_stack() doc by Victor Stinner · 10 years ago
  65. 8e069d5 Apply asyncio Task English fixes to docstrings as well. by R David Murray · 10 years ago
  66. 59e0802 asyncio, Tulip issue 201: Fix a race condition in wait_for() by Victor Stinner · 10 years ago
  67. 313a980 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  68. e931f7b Issue #21163: Fix "destroy pending task" warning in test_wait_errors() by Victor Stinner · 10 years ago
  69. f03b3c7 Issue #21163, asyncio: Ignore "destroy pending task" warnings for private tasks by Victor Stinner · 10 years ago
  70. 770e48d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  71. 737c34f asyncio: sync with Tulip by Victor Stinner · 10 years ago
  72. c39ba7d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  73. 896a25a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  74. a9acbe8 Closes #21886, #21447: Fix a race condition in asyncio when setting the result by Victor Stinner · 10 years ago
  75. 2dba23a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  76. 98b6391 Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly() by Victor Stinner · 10 years ago
  77. f951d28 asyncio: sync with Tulip, add a new asyncio.coroutines module by Victor Stinner · 10 years ago
  78. 80f53aa asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and by Victor Stinner · 10 years ago
  79. bbd96c6 asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutine by Victor Stinner · 10 years ago
  80. 975735f asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandle by Victor Stinner · 10 years ago
  81. df29c4a asyncio: repr(Task) now also contains the line number even if the coroutine is by Victor Stinner · 10 years ago
  82. a02f81f asyncio: Log an error if a Task is destroyed while it is still pending by Victor Stinner · 10 years ago
  83. 8d3e02e asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator on by Victor Stinner · 10 years ago
  84. bc434e2 asyncio: Task.__repr__() now also handles CoroWrapper by Victor Stinner · 10 years ago
  85. 307bccc asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task) by Victor Stinner · 10 years ago
  86. db74d98 Issue #21596: asyncio.wait(): mention that the sequence of futures must not by Victor Stinner · 10 years ago
  87. 8d21357 Issue #21601: Document asyncio.Task.cancel(). Initial patch written by Vajrasky by Victor Stinner · 10 years ago
  88. 94ba146 asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166. by Guido van Rossum · 10 years ago
  89. 83c1ddd asyncio: Be careful accessing instance variables in __del__ (closes #21340). by Guido van Rossum · 10 years ago
  90. 0cbc768 asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163). by Guido van Rossum · 11 years ago
  91. 09cc169 asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctly by Yury Selivanov · 11 years ago
  92. f15f748 asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1 by Yury Selivanov · 11 years ago
  93. 4bd652a asyncio: Document Task.cancel() properly. by Victor Stinner · 11 years ago
  94. d74ac82 asyncio, Tulip issue 158: Task._step() now also sets self to None if an by Victor Stinner · 11 years ago
  95. da492a8 asyncio: remove unused imports and unused variables noticed by pyflakes by Victor Stinner · 11 years ago
  96. 7ef60cd asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests. by Victor Stinner · 11 years ago
  97. b0b0e62 asyncio: Fix spelling and typos. by Yury Selivanov · 11 years ago
  98. b58f053 asyncio: Change as_completed() to use a Queue, to avoid O(N**2) behavior. Fixes issue #20566. by Guido van Rossum · 11 years ago
  99. eb74876 asyncio, Tulip issue 131: as_completed() and wait() now raises a TypeError if by Victor Stinner · 11 years ago
  100. 622be34 asyncio.tasks: Fix as_completed, gather & wait to work with duplicate coroutines by Yury Selivanov · 11 years ago