1. 10ac0cd bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863) by Andrew Svetlov · 5 years ago
  2. 3a5de51 Fix #39191: Don't spawn a task before failing (#17796) by Andrew Svetlov · 5 years ago
  3. ab513a3 bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (#17311) by Kyle Stanley · 6 years ago
  4. 9fdc64c bpo-34037: Fix test_asyncio failure and add loop.shutdown_default_executor() (GH-15735) by Kyle Stanley · 6 years ago
  5. 0237265 Use threadpool for reading from file in sendfile fallback mode (#14076) by Andrew Svetlov · 6 years ago
  6. ef21523 bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback mode. (GH-14075) by Andrew Svetlov · 6 years ago
  7. 7f9a2ae Revert "bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786)" (#13802) by Łukasz Langa · 6 years ago
  8. 0f0a30f bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786) by Victor Stinner · 6 years ago
  9. 744c08a bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628) by 依云 · 6 years ago
  10. f0d4c64 bpo-36686: Improve the documentation of the std* params in loop.subprocess_exec (GH-13586) by sbstp · 6 years ago
  11. 8cd5165 bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') (GH-13530) by Yury Selivanov · 6 years ago
  12. 1f39c28 bpo-37035: Don't log OSError (GH-13548) by Andrew Svetlov · 6 years ago
  13. 431b540 bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528) by Yury Selivanov · 6 years ago
  14. ac8eb8f bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271) by Erwan Le Pape · 6 years ago
  15. 63deaa5 bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423) by Vincent Michel · 6 years ago
  16. 88f07a8 bpo-33530: Implement Happy Eyeballs in asyncio, v2 (GH-7237) by twisteroid ambassador · 6 years ago
  17. 56065d4 bpo-34139: Remove unix datagram socket from FS before binding (GH-8323) by Quentin Dawans · 6 years ago
  18. f345170 asyncio: use dict instead of OrderedDict (GH-11710) by Inada Naoki · 6 years ago
  19. fb2c346 asyncio: __del__() keep reference to warnings.warn (GH-11491) by Victor Stinner · 6 years ago
  20. 3bc0eba bpo-35380: Enable TCP_NODELAY for proactor event loop (#10867) by Andrew Svetlov · 7 years ago
  21. 70f61b9 bpo-35202: Remove unused imports in Lib directory (GH-10450) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 7 years ago
  22. c880ffe bpo-34769: Thread safety for _asyncgen_finalizer_hook(). (GH-9716) by twisteroid ambassador · 7 years ago
  23. d5bd036 bpo-34849: Don't log wating for selector.select in asyncio loop iteration (GH-9641) by Andrew Svetlov · 7 years ago
  24. 0dd7180 bpo-34630: Skip logging SSL certificate errors by asyncio code (GH-9169) by Andrew Svetlov · 7 years ago
  25. 0baa72f bpo-34622: Extract asyncio exceptions into a separate module (GH-9141) by Andrew Svetlov · 7 years ago
  26. cca4eec bpo-34270: Make it possible to name asyncio tasks (GH-8547) by Alex Grönholm · 7 years ago
  27. 944451c bpo-34263 Cap timeout submitted to epoll/select etc. to one day. (GH-8532) by MartinAltmayer · 7 years ago
  28. 22d2508 bpo-34075: Deprecate non-ThreadPoolExecutor in loop.set_default_executor() (GH-8533) by Elvis Pranskevichus · 7 years ago
  29. d904c23 bpo-27500: Fix static version of getaddrinfo to resolve IPv6 (GH-7993) by Yury Selivanov · 7 years ago
  30. 12f482e bpo-30805: Avoid race condition with debug logging (GH-7545) by Yury Selivanov · 7 years ago
  31. 415bc46 bpo-33769: start_tls: Fix error message; cancel callbacks on error (GH-7403) by Yury Selivanov · 7 years ago
  32. 9602643 bpo-33734: asyncio/ssl: a bunch of bugfixes (#7321) by Yury Selivanov · 7 years ago
  33. f295587 bpo-33674: Pause the transport as early as possible (#7192) by Yury Selivanov · 7 years ago
  34. 7165754 bpo-32410: Avoid blocking on file IO in sendfile fallback code (GH-7172) by Yury Selivanov · 7 years ago
  35. dbf1022 bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130) by Yury Selivanov · 7 years ago
  36. bec2372 bpo-32327: Revert loop.run_in_executor behaviour: return a Future. (#5392) by Yury Selivanov · 7 years ago
  37. b1a6ac4 bpo-32622: Enforce sendfile fallback policy for FALLBACK transports (#5364) by Yury Selivanov · 7 years ago
  38. 7c68407 bpo-32622: Implement loop.sendfile() (#5271) by Andrew Svetlov · 7 years ago
  39. c9070d0 bpo-32662: Implement Server.start_serving() and Server.serve_forever() (#5312) by Yury Selivanov · 7 years ago
  40. f23746a bpo-32436: Implement PEP 567 (#5027) by Yury Selivanov · 7 years ago
  41. a4afcdf bpo-32314: Fix asyncio.run() to cancel runinng tasks on shutdown (#5262) by Yury Selivanov · 7 years ago
  42. fc2f407 bpo-32591: Add native coroutine origin tracking (#5250) by Nathaniel J. Smith · 7 years ago
  43. 7464e87 bpo-32410: Make SendfileNotAvailableError exception public (#5243) by Andrew Svetlov · 7 years ago
  44. 6b5a279 bpo-32410: Implement loop.sock_sendfile() (#4976) by Andrew Svetlov · 7 years ago
  45. 1634fc2 bpo-32418: Add get_loop() method on Server, AbstractServer classes (#4997) by Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) · 7 years ago
  46. f111b3d bpo-23749: Implement loop.start_tls() (#5039) by Yury Selivanov · 7 years ago
  47. ca9b36c bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992) by Yury Selivanov · 8 years ago
  48. 51eb1c6 bpo-29970: Make ssh_handshake_timeout None by default (#4939) by Andrew Svetlov · 8 years ago
  49. f7686c1 bpo-29970: Add timeout for SSL handshake in asyncio by Neil Aspinall · 8 years ago
  50. 36c2c04 bpo-32355: Optimize asyncio.gather() (#4913) by Yury Selivanov · 8 years ago
  51. a7bd64c bpo-27456: Simplify sock type checks (#4922) by Yury Selivanov · 8 years ago
  52. e796b2f bpo-27456: Ensure TCP_NODELAY is set on linux (#4231) by Yury Selivanov · 8 years ago
  53. 19a44f6 bpo-32327: Convert asyncio functions documented as coroutines to coroutines. (#4872) by Yury Selivanov · 8 years ago
  54. 19d0d54 bpo-32262: Fix f-string (#4787) by Yury Selivanov · 8 years ago
  55. 6370f34 bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775) by Yury Selivanov · 8 years ago
  56. 5f841b5 bpo-32193: Convert asyncio to async/await usage (#4753) by Andrew Svetlov · 8 years ago
  57. 28e6165 bpo-31245: asyncio: Fix typo, isistance => isinstance (#4594) by Victor Stinner · 8 years ago
  58. 44862df bpo-32047: -X dev enables asyncio debug mode (#4418) by Victor Stinner · 8 years ago
  59. 921e943 bpo-31970: Reduce performance overhead of asyncio debug mode. (#4314) by Antoine Pitrou · 8 years ago
  60. fe4ea9c bpo-31245: Asyncio unix socket datagram (#3164) by Quentin Dawans · 8 years ago
  61. 21b3e04 call remove_done_callback in finally section (#1688) by jimmylai · 8 years ago
  62. 3e2ad8e bpo-29617: Remove Python 3.3 support from asyncio (GH-232) by INADA Naoki · 8 years ago
  63. 2e576f5 bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263) by Serhiy Storchaka · 8 years ago
  64. 5affd23 bpo-29762: More use "raise from None". (#569) by Serhiy Storchaka · 8 years ago
  65. 70d28a1 Remove unused imports. by Serhiy Storchaka · 9 years ago
  66. 5cb0c09 Merge 3.5 (issue #28652) by Yury Selivanov · 9 years ago
  67. dab0584 Issue #28652: Partially rollback previous changes by Yury Selivanov · 9 years ago
  68. 954c7dd Merge 3.5 (issue #28652) by Yury Selivanov · 9 years ago
  69. a1a8b7d Issue #28652: Make loop methods reject socket kinds they do not support. by Yury Selivanov · 9 years ago
  70. 69312fa Merge 3.5 (issue #28613) by Yury Selivanov · 9 years ago
  71. 600a349 Issue #28613: Fix get_event_loop() to return the current loop by Yury Selivanov · 9 years ago
  72. c542049 asyncio: Sync with upstream by Yury Selivanov · 9 years ago
  73. a6fbcd1 Merge 3.5 (issue #28600) by Yury Selivanov · 9 years ago
  74. 491a912 Issue #28600: Optimize loop.call_soon(). by Yury Selivanov · 9 years ago
  75. a0c1ba6 Issue #28544: Implement asyncio.Task in C. by Yury Selivanov · 9 years ago
  76. 6330f2a Merge 3.5 (issue #26796) by Yury Selivanov · 9 years ago
  77. e8a6045 Issue #26796: Don't configure the number of workers for default threadpool executor. by Yury Selivanov · 9 years ago
  78. ed05406 Issue #28500: Fix asyncio to handle async gens GC from another thread. by Yury Selivanov · 9 years ago
  79. d2c5fab Merge 3.5 (issue #28371) by Yury Selivanov · 9 years ago
  80. 0de3de6 Issue #28371: Deprecate passing asyncio.Handles to run_in_executor. by Yury Selivanov · 9 years ago
  81. 0035be3 Misc asyncio improvements from upstream (merge 3.5->3.6) by Guido van Rossum · 9 years ago
  82. e3c65a7 Misc asyncio improvements from upstream by Guido van Rossum · 9 years ago
  83. 1b984ff Merge 3.5 (issue #28174) by Yury Selivanov · 9 years ago
  84. 5587d7c Issue #28174: Handle when SO_REUSEPORT isn't properly supported (asyncio) by Yury Selivanov · 9 years ago
  85. d070154 Merge 3.5 (issue #27906) by Yury Selivanov · 9 years ago
  86. a1b0e7d Issue #27906: Fix socket accept exhaustion during high TCP traffic. by Yury Selivanov · 9 years ago
  87. 4357cf6 Another asyncio sync. by Yury Selivanov · 9 years ago
  88. 0a91d48 Merge 3.5 (asyncio) by Yury Selivanov · 9 years ago
  89. f6d991d asyncio: Sync with the upstream by Yury Selivanov · 9 years ago
  90. f1024f7 merge by Raymond Hettinger · 9 years ago
  91. 7b3b3dc Merge asyncio upstream. by Guido van Rossum · 9 years ago
  92. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 9 years ago
  93. dd917f8 Closes #27904: Improved logging statements to defer formatting until needed. by Vinay Sajip · 9 years ago
  94. e824315 Merge 3.5 (issue #27392) by Yury Selivanov · 9 years ago
  95. 252e9ed Issue #27392: Add loop.connect_accepted_socket(). by Yury Selivanov · 9 years ago
  96. 552bf94 Merge 3.5 (issue #27136, asyncio) by Yury Selivanov · 9 years ago
  97. f1c6fa9 Issue #27136: Fix DNS static resolution; don't use it in getaddrinfo by Yury Selivanov · 9 years ago
  98. 1f56e5f Merge 3.5 (asyncio) by Yury Selivanov · 9 years ago
  99. a714616 asyncio: Fix getaddrinfo to accept service names (for port) by Yury Selivanov · 9 years ago
  100. 642afb3 Merge 3.5 (asyncio) by Yury Selivanov · 9 years ago