1. bafd4b5 bpo-29883: Asyncio proactor udp (GH-13440) by Andrew Svetlov · 5 years ago
  2. 8cd5165 bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') (GH-13530) by Yury Selivanov · 5 years ago
  3. 1f39c28 bpo-37035: Don't log OSError (GH-13548) by Andrew Svetlov · 5 years ago
  4. 431b540 bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528) by Yury Selivanov · 5 years ago
  5. c9f872b bpo-23846: Fix ProactorEventLoop._write_to_self() (GH-11566) by Victor Stinner · 6 years ago
  6. fb2c346 asyncio: __del__() keep reference to warnings.warn (GH-11491) by Victor Stinner · 6 years ago
  7. 80fda71 bpo-35682: Fix _ProactorBasePipeTransport._force_close() (GH-11462) by Victor Stinner · 6 years ago
  8. b5c8cfa bpo-23057: add loop self socket as wakeup fd for signals (#11135) by Vladimir Matveev · 6 years ago
  9. 3bc0eba bpo-35380: Enable TCP_NODELAY for proactor event loop (#10867) by Andrew Svetlov · 6 years ago
  10. 0baa72f bpo-34622: Extract asyncio exceptions into a separate module (GH-9141) by Andrew Svetlov · 6 years ago
  11. 9045199 bpo-33833: Fix ProactorSocketTransport AssertionError (#7893) by twisteroid ambassador · 6 years ago
  12. ff6c077 bpo-33694: Fix typo in helper function name (GH-7522) by Victor Stinner · 6 years ago
  13. 79790bc bpo-33694: Fix race condition in asyncio proactor (GH-7498) by Victor Stinner · 6 years ago
  14. dbf1022 bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130) by Yury Selivanov · 6 years ago
  15. 4151061 bpo-26819: Prevent proactor double read on resume (#6921) by CtrlZvi · 6 years ago
  16. a19fb3c bpo-32622: Native sendfile on windows (#5565) by Andrew Svetlov · 6 years ago
  17. 631fd38 bpo-32251: Implement asyncio.BufferedProtocol. (#4755) by Yury Selivanov · 6 years ago
  18. 7c68407 bpo-32622: Implement loop.sendfile() (#5271) by Andrew Svetlov · 6 years ago
  19. f111b3d bpo-23749: Implement loop.start_tls() (#5039) by Yury Selivanov · 7 years ago
  20. 51eb1c6 bpo-29970: Make ssh_handshake_timeout None by default (#4939) by Andrew Svetlov · 7 years ago
  21. f7686c1 bpo-29970: Add timeout for SSL handshake in asyncio by Neil Aspinall · 7 years ago
  22. 319c034 bpo-29711: Fix stop_serving in proactor loop kill all listening servers (#431) by Julien Duponchelle · 7 years ago
  23. d757aaf bpo-32356: idempotent pause_/resume_reading; new is_reading method. (#4914) by Yury Selivanov · 7 years ago
  24. 19a44f6 bpo-32327: Convert asyncio functions documented as coroutines to coroutines. (#4872) by Yury Selivanov · 7 years ago
  25. 6370f34 bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775) by Yury Selivanov · 7 years ago
  26. a10dc3e asyncio: use directly socket.socketpair() (#4597) by Victor Stinner · 7 years ago
  27. 51d546a bpo-32069: Drop legacy SSL transport (#4451) by Andrew Svetlov · 7 years ago
  28. 525f40d bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051) by Antoine Pitrou · 7 years ago
  29. 34792d2 Fix TypeError is asyncio/proactor_events (#993) by Jim Fasarakis-Hilliard · 7 years ago
  30. 3e2ad8e bpo-29617: Remove Python 3.3 support from asyncio (GH-232) by INADA Naoki · 7 years ago
  31. d070154 Merge 3.5 (issue #27906) by Yury Selivanov · 8 years ago
  32. a1b0e7d Issue #27906: Fix socket accept exhaustion during high TCP traffic. by Yury Selivanov · 8 years ago
  33. 966321e Merge 3.5 (asyncio) by Yury Selivanov · 8 years ago
  34. a05a6ef asyncio: Add set_protocol / get_protocol methods to Transports by Yury Selivanov · 8 years ago
  35. 552bf94 Merge 3.5 (issue #27136, asyncio) by Yury Selivanov · 8 years ago
  36. f1c6fa9 Issue #27136: Fix DNS static resolution; don't use it in getaddrinfo by Yury Selivanov · 8 years ago
  37. 8ace2c6 Merge 3.5 (Issue #27041) by Yury Selivanov · 8 years ago
  38. 7661db6 Issue #27041: asyncio: Add loop.create_future method by Yury Selivanov · 8 years ago
  39. 00f4648 Merge 3.5 (asyncio) by Victor Stinner · 8 years ago
  40. c94a93a asyncio: Don't log ConnectionAbortedError by Victor Stinner · 8 years ago
  41. e19558a Add a source parameter to warnings.warn() by Victor Stinner · 8 years ago
  42. d5c2a62 asyncio: Skip getaddrinfo if host is already resolved. by Yury Selivanov · 9 years ago
  43. 5d7e3b6 asyncio: Cleanup Future API by Yury Selivanov · 9 years ago
  44. 5bb1afb asyncio: Add Transport.is_closing() by Yury Selivanov · 9 years ago
  45. 2a8911c asyncio: Sync with upstream (compat module) by Yury Selivanov · 9 years ago
  46. 2fc2313 asyncio: Only call _check_resolved_address() in debug mode by Victor Stinner · 9 years ago
  47. 978a9af Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transport by Victor Stinner · 9 years ago
  48. f07801b asyncio: SSL transports now clear their reference to the waiter by Victor Stinner · 9 years ago
  49. cd0f7f9 asyncio: Enhance BaseProactorEventLoop._loop_self_reading() by Victor Stinner · 10 years ago
  50. fcd58de asyncio: Fix _ProactorBasePipeTransport.close() by Victor Stinner · 10 years ago
  51. 79c93ba asyncio: Fix _ProactorBasePipeTransport.__repr__() by Victor Stinner · 10 years ago
  52. 29ad011 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  53. 231b404 Issue #22560: New SSL implementation based on ssl.MemoryBIO by Victor Stinner · 10 years ago
  54. b86a968 Issue #22922: Fix ProactorEventLoop.close() by Victor Stinner · 10 years ago
  55. 70db9e4 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  56. 956de69 Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods of by Victor Stinner · 10 years ago
  57. df75d5b asyncio, tulip issue 202: Add unit test of pause/resume writing for proactor by Victor Stinner · 10 years ago
  58. 4c85ec9 Issue #22922: Fix ProactorEventLoop.close() by Victor Stinner · 10 years ago
  59. 004adb9 asyncio: Move loop attribute to _FlowControlMixin by Victor Stinner · 10 years ago
  60. 0e34dc3 asyncio: enhance protocol representation by Victor Stinner · 10 years ago
  61. b261475 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  62. 9c9f1f1 Close #22063: socket operations (socket,recv, sock_sendall, sock_connect, by Victor Stinner · 10 years ago
  63. 18a28dc asyncio: sync with Tulip by Victor Stinner · 10 years ago
  64. fe5649c Python issue #21645, Tulip issue 192: Rewrite signal handling by Victor Stinner · 10 years ago
  65. e912e65 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  66. b28dbac asyncio, Tulip issue 180: Make Server attributes and methods private by Victor Stinner · 10 years ago
  67. bfff45d asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits by Victor Stinner · 10 years ago
  68. 799a60c asyncio: sync with Tulip by Victor Stinner · 10 years ago
  69. 1a870c9 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  70. a9acbe8 Closes #21886, #21447: Fix a race condition in asyncio when setting the result by Victor Stinner · 10 years ago
  71. f328c7d asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the by Victor Stinner · 10 years ago
  72. bb2fc5b Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop by Victor Stinner · 10 years ago
  73. 6f24d83 asyncio: Fix _ProactorWritePipeTransport._pipe_closed() by Victor Stinner · 10 years ago
  74. 0ee29c2 asyncio, Tulip issue 139: Improve error messages on "fatal errors" by Victor Stinner · 10 years ago
  75. 3cb9914 asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin by Yury Selivanov · 10 years ago
  76. 569efa2 asyncio: New error handling API. Issue #20681. by Yury Selivanov · 10 years ago
  77. 1b0580b ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if by Victor Stinner · 10 years ago
  78. 85310a5 Issue #20505: Remove resolution and _granularity from selectors and asyncio by Victor Stinner · 10 years ago
  79. 83bdfa0 asyncio: Fix _ProactorWritePipeTransport._pipe_closed() by Victor Stinner · 10 years ago
  80. 915bcb0 Issue #20400: Merge Tulip into Python: add the new asyncio.subprocess module by Victor Stinner · 10 years ago
  81. 1506df2 Issue #20455: Add a resolution attribute to IocpProactor (1 ms) by Victor Stinner · 10 years ago
  82. b60e9ca Issue #20455: asyncio: write a new write pipe transport class for proactor (on by Victor Stinner · 10 years ago
  83. 63b4d4b asyncio: _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport shouldn't log BrokenPipeError nor ConnectionResetError. by Victor Stinner · 10 years ago
  84. 8dffc45 Update asyncio from the Tulip project by Victor Stinner · 11 years ago
  85. 7de2646 Cleanup properly proactor event loop by Victor Stinner · 11 years ago
  86. ebb8e58 asyncio: Write flow control for proactor event loop. by Guido van Rossum · 11 years ago
  87. 5969128 asyncio: Add support for running subprocesses on Windows with the IOCP event loop (Richard Oudkerk). by Guido van Rossum · 11 years ago
  88. 4ca7355 Issue #19299: fix refleak test failures in test_asyncio by Antoine Pitrou · 11 years ago
  89. 57497ad Rename Transport.pause/resume to pause_reading/pause_writing. Also relax timeout in test_call_later(). by Guido van Rossum · 11 years ago
  90. fc29e0f Rename the logger to plain "logger". by Guido van Rossum · 11 years ago
  91. 27b7c7e Initial checkin of asyncio package (== Tulip, == PEP 3156). by Guido van Rossum · 11 years ago