1. a170fa1 bpo-31346: Use PROTOCOL_TLS_CLIENT/SERVER (#3058) by Christian Heimes · 7 years ago
  2. 80bbe6a7 bpo-31350: Optimize get_event_loop and _get_running_loop (#3347) by jimmylai · 7 years ago
  3. 16432be bpo-31250, test_asyncio: fix dangling threads (#3252) by Victor Stinner · 7 years ago
  4. b903067 bpo-30280: Cleanup threads in ayncio tests (#2501) by Victor Stinner · 7 years ago
  5. cab4692 Fix a typo in a comment in coroutines.py (GH-2267) by Johan de Jager · 7 years ago
  6. 09663de Revert "bpo-29406: asyncio SSL contexts leak sockets after calling close with certain servers (#409)" (#2111) by Yury Selivanov · 7 years ago
  7. 7ce1c6f bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050) by Yury Selivanov · 7 years ago
  8. a608d2d bpo-29406: asyncio SSL contexts leak sockets after calling close with certain servers (#409) by Nikolay Kim · 7 years ago
  9. 34792d2 Fix TypeError is asyncio/proactor_events (#993) by Jim Fasarakis-Hilliard · 7 years ago
  10. d1f5751 Break circular references when closing SSLTransport objects (#981) by Michaël Sghaïer · 7 years ago
  11. a0e3d2d Closing transport during handshake process leaks socket (#480) by Nikolay Kim · 7 years ago
  12. 894a654 Fix waiter cancellation in asyncio.Lock (#1031) by Mathieu Sornay · 7 years ago
  13. 21b3e04 call remove_done_callback in finally section (#1688) by jimmylai · 7 years ago
  14. 991adca bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1097) by INADA Naoki · 7 years ago
  15. 3e2ad8e bpo-29617: Remove Python 3.3 support from asyncio (GH-232) by INADA Naoki · 7 years ago
  16. 2e576f5 bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263) by Serhiy Storchaka · 7 years ago
  17. ae5b326 bpo-30098: Clarify that run_coroutine_threadsafe expects asyncio.Future (GH-1170) by Charles Renwick · 7 years ago
  18. 5affd23 bpo-29762: More use "raise from None". (#569) by Serhiy Storchaka · 7 years ago
  19. 1e73dbb Fix small exception typos in Lib (#818) by Jim Fasarakis-Hilliard · 7 years ago
  20. 2b27e2e bpo-29742: asyncio get_extra_info() throws exception (#525) by Nikolay Kim · 7 years ago
  21. 902e9c5 asyncio: Optimize _get_running_loop() to call getpid() only when there's a loop by Yury Selivanov · 7 years ago
  22. 2f15645 asyncio: Fix trailing whitespace/code style by Yury Selivanov · 7 years ago
  23. 481cb70 bpo-29704: Fix asyncio.SubprocessStreamProtocol closing (#405) by Seth M. Larson · 7 years ago
  24. ba7e1f9 bpo-29703: asyncio: Fix creating new event loops in child processes. (#404) by Yury Selivanov · 7 years ago
  25. 189413d Issue #29314: Merge with 3.6 by Mariatta Wijaya · 8 years ago
  26. 6138432 Issue #29314: Merge with 3.5 by Mariatta Wijaya · 8 years ago
  27. 4e7ff8b Issue #29314: Set the stacklevel to two in asyncio.async() Deprecation Warning by Mariatta Wijaya · 8 years ago
  28. 70d28a1 Remove unused imports. by Serhiy Storchaka · 8 years ago
  29. 11c1351 Merge 3.5 (issue #28990) by Yury Selivanov · 8 years ago
  30. b1461aa Issue #28990: Fix SSL hanging if connection is closed before handshake completed. by Yury Selivanov · 8 years ago
  31. 5cb0c09 Merge 3.5 (issue #28652) by Yury Selivanov · 8 years ago
  32. dab0584 Issue #28652: Partially rollback previous changes by Yury Selivanov · 8 years ago
  33. 21bb0e6 Merge 3.5 (issue #28704) by Yury Selivanov · 8 years ago
  34. d7c1518 Issue #28704: Fix create_unix_server to support Path-like objects by Yury Selivanov · 8 years ago
  35. 27182bb Merge 3.5 (issue #28703) by Yury Selivanov · 8 years ago
  36. 0ed20cd Issue #28703: Fix asyncio.iscoroutinefunction to handle Mock objects. by Yury Selivanov · 8 years ago
  37. 954c7dd Merge 3.5 (issue #28652) by Yury Selivanov · 8 years ago
  38. a1a8b7d Issue #28652: Make loop methods reject socket kinds they do not support. by Yury Selivanov · 8 years ago
  39. a054f40 Merge 3.5 (asyncio) by Yury Selivanov · 8 years ago
  40. 6cc495e asyncio: Fix _format_coroutine for coroutine-like objects w/o __name__ by Yury Selivanov · 8 years ago
  41. 1994dd3 Merge 3.5 (issue #28613) by Yury Selivanov · 8 years ago
  42. 6ea2b8f Issue #28613: Expose asyncio._get_running_loop() and _set_running_loop() by Yury Selivanov · 8 years ago
  43. 6130c02 Merge 3.5 (issue #28634) by Yury Selivanov · 8 years ago
  44. 49d6b8c Issue #28634: Fix asyncio.isfuture() to support mocks by Yury Selivanov · 8 years ago
  45. 69312fa Merge 3.5 (issue #28613) by Yury Selivanov · 8 years ago
  46. 600a349 Issue #28613: Fix get_event_loop() to return the current loop by Yury Selivanov · 8 years ago
  47. c542049 asyncio: Sync with upstream by Yury Selivanov · 8 years ago
  48. a6fbcd1 Merge 3.5 (issue #28600) by Yury Selivanov · 8 years ago
  49. 491a912 Issue #28600: Optimize loop.call_soon(). by Yury Selivanov · 8 years ago
  50. a0c1ba6 Issue #28544: Implement asyncio.Task in C. by Yury Selivanov · 8 years ago
  51. 01c521b asyncio: Increase asyncio.Future test coverage; test both implementations. by Yury Selivanov · 8 years ago
  52. 6330f2a Merge 3.5 (issue #26796) by Yury Selivanov · 8 years ago
  53. e8a6045 Issue #26796: Don't configure the number of workers for default threadpool executor. by Yury Selivanov · 8 years ago
  54. e145efc Merge 3.5 (issue #26923) by Yury Selivanov · 8 years ago
  55. 3d67615 Issue #26923: Fix asyncio.Gather to refuse being cancelled once all children are done. by Yury Selivanov · 8 years ago
  56. ed05406 Issue #28500: Fix asyncio to handle async gens GC from another thread. by Yury Selivanov · 8 years ago
  57. a836362 Issue #28448: Fix C implemented asyncio.Future didn't work on Windows by INADA Naoki · 8 years ago
  58. c411a7d Issue #28452: Remove _asyncio._init_module function by INADA Naoki · 8 years ago
  59. 9f2ce25 Issue #28428: Rename _futures module to _asyncio. by INADA Naoki · 8 years ago
  60. 917c1c3 Merge 3.5 (issue #27972) by Yury Selivanov · 8 years ago
  61. 4145c83 Issue #27972: Prohibit Tasks to await on themselves. by Yury Selivanov · 8 years ago
  62. 88e8aca Merge 3.5 (issue #28399) by Yury Selivanov · 8 years ago
  63. 908d55d Issue #28399: Remove UNIX socket from FS before binding. by Yury Selivanov · 8 years ago
  64. 9e4e38e Issue #26801: Added C implementation of asyncio.Future. by INADA Naoki · 8 years ago
  65. 3df053e Merge 3.5 (asyncio) by Yury Selivanov · 8 years ago
  66. 36e7e97 asyncio: Only allow Unix Stream sockets for loop.create_unix_server/connection by Yury Selivanov · 8 years ago
  67. a886142 Merge 3.5 (issue #23749) by Yury Selivanov · 8 years ago
  68. 92e7c7f asyncio: Add "call_connection_made" arg to SSLProtocol.__init__ by Yury Selivanov · 8 years ago
  69. 996dd4a Merge 3.5 (issue #28372) by Yury Selivanov · 8 years ago
  70. 8dc3e43 Issue #28372: Fix asyncio to support formatting of non-python coroutines by Yury Selivanov · 8 years ago
  71. d2c5fab Merge 3.5 (issue #28371) by Yury Selivanov · 8 years ago
  72. 0de3de6 Issue #28371: Deprecate passing asyncio.Handles to run_in_executor. by Yury Selivanov · 8 years ago
  73. 139914a Merge 3.5 (issue #28370) by Yury Selivanov · 8 years ago
  74. 3e56ff0 Issue #28370: Speedup asyncio.StreamReader.readexactly by Yury Selivanov · 8 years ago
  75. bb8eb92 Merge 3.5 (issue #28369) by Yury Selivanov · 8 years ago
  76. 5b8d4f9 Issue #28369: Raise an error when transport's FD is used with add_reader by Yury Selivanov · 8 years ago
  77. 67ea618 Merge 3.5 (issue #28368) by Yury Selivanov · 8 years ago
  78. 9eb6c67 Issue #28368: Refuse monitoring processes if the child watcher has no loop attached. by Yury Selivanov · 8 years ago
  79. 0035be3 Misc asyncio improvements from upstream (merge 3.5->3.6) by Guido van Rossum · 8 years ago
  80. e3c65a7 Misc asyncio improvements from upstream by Guido van Rossum · 8 years ago
  81. 50fe711 Merge 3.5 (issue #28176) by Yury Selivanov · 8 years ago
  82. d6c6771 Issue #28176: Fix callbacks race in asyncio.SelectorLoop.sock_connect. by Yury Selivanov · 8 years ago
  83. b76968b Merge 3.5 (asyncio, issue #26909) by Yury Selivanov · 8 years ago
  84. 4c5bf3b Issue #26909: Fix slow pipes IO in asyncio. by Yury Selivanov · 8 years ago
  85. 62b81c3 Merge 3.5 (issue #26654) by Yury Selivanov · 8 years ago
  86. 45dccda Issue #26654: Inspect functools.partial in asyncio.Handle.__repr__. by Yury Selivanov · 8 years ago
  87. 1b984ff Merge 3.5 (issue #28174) by Yury Selivanov · 8 years ago
  88. 5587d7c Issue #28174: Handle when SO_REUSEPORT isn't properly supported (asyncio) by Yury Selivanov · 8 years ago
  89. d070154 Merge 3.5 (issue #27906) by Yury Selivanov · 8 years ago
  90. a1b0e7d Issue #27906: Fix socket accept exhaustion during high TCP traffic. by Yury Selivanov · 8 years ago
  91. 4357cf6 Another asyncio sync. by Yury Selivanov · 8 years ago
  92. b26067a asyncio: Drop debug code by Yury Selivanov · 8 years ago
  93. 0a91d48 Merge 3.5 (asyncio) by Yury Selivanov · 8 years ago
  94. f6d991d asyncio: Sync with the upstream by Yury Selivanov · 8 years ago
  95. 8987c9d Issue #26182: Raise DeprecationWarning for improper use of async/await keywords by Yury Selivanov · 8 years ago
  96. 503ba3e Merge 3.5 (issue #27456) by Yury Selivanov · 8 years ago
  97. 44c19ec Issue #27456: asyncio: Set TCP_NODELAY by default. by Yury Selivanov · 8 years ago
  98. 966321e Merge 3.5 (asyncio) by Yury Selivanov · 8 years ago
  99. a05a6ef asyncio: Add set_protocol / get_protocol methods to Transports by Yury Selivanov · 8 years ago
  100. d048637 Issue #28022: Deprecate ssl-related arguments in favor of SSLContext. by Christian Heimes · 8 years ago