1. b1461aa Issue #28990: Fix SSL hanging if connection is closed before handshake completed. by Yury Selivanov · 8 years ago
  2. dab0584 Issue #28652: Partially rollback previous changes by Yury Selivanov · 8 years ago
  3. d7c1518 Issue #28704: Fix create_unix_server to support Path-like objects by Yury Selivanov · 8 years ago
  4. 0ed20cd Issue #28703: Fix asyncio.iscoroutinefunction to handle Mock objects. by Yury Selivanov · 8 years ago
  5. a1a8b7d Issue #28652: Make loop methods reject socket kinds they do not support. by Yury Selivanov · 8 years ago
  6. 6cc495e asyncio: Fix _format_coroutine for coroutine-like objects w/o __name__ by Yury Selivanov · 8 years ago
  7. 6ea2b8f Issue #28613: Expose asyncio._get_running_loop() and _set_running_loop() by Yury Selivanov · 8 years ago
  8. 49d6b8c Issue #28634: Fix asyncio.isfuture() to support mocks by Yury Selivanov · 8 years ago
  9. 600a349 Issue #28613: Fix get_event_loop() to return the current loop by Yury Selivanov · 8 years ago
  10. c542049 asyncio: Sync with upstream by Yury Selivanov · 8 years ago
  11. 491a912 Issue #28600: Optimize loop.call_soon(). by Yury Selivanov · 8 years ago
  12. e8a6045 Issue #26796: Don't configure the number of workers for default threadpool executor. by Yury Selivanov · 8 years ago
  13. 3d67615 Issue #26923: Fix asyncio.Gather to refuse being cancelled once all children are done. by Yury Selivanov · 8 years ago
  14. 4145c83 Issue #27972: Prohibit Tasks to await on themselves. by Yury Selivanov · 8 years ago
  15. 908d55d Issue #28399: Remove UNIX socket from FS before binding. by Yury Selivanov · 8 years ago
  16. 36e7e97 asyncio: Only allow Unix Stream sockets for loop.create_unix_server/connection by Yury Selivanov · 8 years ago
  17. 92e7c7f asyncio: Add "call_connection_made" arg to SSLProtocol.__init__ by Yury Selivanov · 8 years ago
  18. 8dc3e43 Issue #28372: Fix asyncio to support formatting of non-python coroutines by Yury Selivanov · 8 years ago
  19. 0de3de6 Issue #28371: Deprecate passing asyncio.Handles to run_in_executor. by Yury Selivanov · 8 years ago
  20. 3e56ff0 Issue #28370: Speedup asyncio.StreamReader.readexactly by Yury Selivanov · 8 years ago
  21. 5b8d4f9 Issue #28369: Raise an error when transport's FD is used with add_reader by Yury Selivanov · 8 years ago
  22. 9eb6c67 Issue #28368: Refuse monitoring processes if the child watcher has no loop attached. by Yury Selivanov · 8 years ago
  23. e3c65a7 Misc asyncio improvements from upstream by Guido van Rossum · 8 years ago
  24. d6c6771 Issue #28176: Fix callbacks race in asyncio.SelectorLoop.sock_connect. by Yury Selivanov · 8 years ago
  25. 4c5bf3b Issue #26909: Fix slow pipes IO in asyncio. by Yury Selivanov · 8 years ago
  26. 45dccda Issue #26654: Inspect functools.partial in asyncio.Handle.__repr__. by Yury Selivanov · 8 years ago
  27. 5587d7c Issue #28174: Handle when SO_REUSEPORT isn't properly supported (asyncio) by Yury Selivanov · 8 years ago
  28. a1b0e7d Issue #27906: Fix socket accept exhaustion during high TCP traffic. by Yury Selivanov · 8 years ago
  29. 4357cf6 Another asyncio sync. by Yury Selivanov · 8 years ago
  30. f6d991d asyncio: Sync with the upstream by Yury Selivanov · 8 years ago
  31. 44c19ec Issue #27456: asyncio: Set TCP_NODELAY by default. by Yury Selivanov · 8 years ago
  32. a05a6ef asyncio: Add set_protocol / get_protocol methods to Transports by Yury Selivanov · 8 years ago
  33. 7b3b3dc Merge asyncio upstream. by Guido van Rossum · 8 years ago
  34. 1140a03 Rename Future._blocking to _asyncio_future_blocking. by Guido van Rossum · 8 years ago
  35. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  36. 4786787 Fix ordering issues in UNIX read/write pipe transport constructors. by Guido van Rossum · 8 years ago
  37. 8b7918a Don't select for read on character devices in _UnixWritePipeTransport. by Guido van Rossum · 8 years ago
  38. 83f5a38 In asyncio.locks.Lock.acquire(): Avoid deadlock when a cancelled future is in self._waiters. by Guido van Rossum · 8 years ago
  39. 252e9ed Issue #27392: Add loop.connect_accepted_socket(). by Yury Selivanov · 8 years ago
  40. 63bf487 asyncio: Use socket specs for getaddrinfo() in sock_connect() by Yury Selivanov · 8 years ago
  41. 77bc04a asyncio: Fix NameError in sslproto _fatal_error() by Yury Selivanov · 8 years ago
  42. c92bf83 Issue #22970: asyncio: Fix inconsistency cancelling Condition.wait. by Yury Selivanov · 8 years ago
  43. ca2e0a4 Issue #27223: aio: Fix _read_ready and _write_ready to respect _conn_lost. by Yury Selivanov · 8 years ago
  44. a6f6edb Issue #27243: Fix __aiter__ protocol by Yury Selivanov · 8 years ago
  45. c1cf296 asyncio: Remove asyncio.timeout() context manager. by Yury Selivanov · 8 years ago
  46. f1c6fa9 Issue #27136: Fix DNS static resolution; don't use it in getaddrinfo by Yury Selivanov · 8 years ago
  47. 3ee6270 Fix typos in code comment and documentation by Martin Panter · 8 years ago
  48. a714616 asyncio: Fix getaddrinfo to accept service names (for port) by Yury Selivanov · 8 years ago
  49. a8f895f asyncio: Support host=b'' for getaddrinfo by Yury Selivanov · 8 years ago
  50. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  51. f0200e0 asyncio: Fix BytesWarning (use typed=True in lru_cache for _ipaddr_info) by Yury Selivanov · 8 years ago
  52. eaaaee8 asyncio: Fix getaddrinfo to accept None/str/bytes for 'port' arg by Yury Selivanov · 8 years ago
  53. 3dc5129 asyncio: Fix an SSL warning in StreamReaderProtocol.eof_received by Yury Selivanov · 8 years ago
  54. b0d43ce asyncio: fix ResourceWarning related to subprocesses by Victor Stinner · 8 years ago
  55. b461791 asyncio/streams: Fix code style; delete LimitOverrunError.message attr by Yury Selivanov · 8 years ago
  56. 7661db6 Issue #27041: asyncio: Add loop.create_future method by Yury Selivanov · 8 years ago
  57. 7ed7ce6 Issue #27040: Add loop.get_exception_handler method by Yury Selivanov · 8 years ago
  58. 5dc0933 asyncio: Fix unix pipe transport 'repr' methods by Yury Selivanov · 8 years ago
  59. 32dae3d asyncio: Break reference cycle in StreamReaderProtocol.connection_lost by Yury Selivanov · 8 years ago
  60. 7657f6b Issue #26848: Fix asyncio/subprocess.communicate() to handle empty input. by Yury Selivanov · 8 years ago
  61. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  62. 6245cb3 Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc by Martin Panter · 8 years ago
  63. c94a93a asyncio: Don't log ConnectionAbortedError by Victor Stinner · 9 years ago
  64. 2ba8ece asyncio: allow None as wait timeout by Victor Stinner · 9 years ago
  65. e076ffb asyncio: Remove duplicate bind addresses in create_server. by Yury Selivanov · 9 years ago
  66. 1bd0307 asyncio: Prevent StopIteration from being thrown into a Future by Yury Selivanov · 9 years ago
  67. dce63234 asyncio: Fix @coroutine to recognize CoroWrapper (issue #25647) by Yury Selivanov · 9 years ago
  68. c04fb56 Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar by Martin Panter · 9 years ago
  69. 3e72309 Fix error message in asyncio.selector_events. by Victor Stinner · 9 years ago
  70. d9d0e86 Issue #26050: Add asyncio.StreamReader.readuntil() method. by Yury Selivanov · 9 years ago
  71. 9d976fa Sync with asyncio by Andrew Svetlov · 9 years ago
  72. c07b16b Sync with asyncio repo by Andrew Svetlov · 9 years ago
  73. d5c2a62 asyncio: Skip getaddrinfo if host is already resolved. by Yury Selivanov · 9 years ago
  74. 0ac3a0c asyncio: Make Tasks check if Futures are attached to the same event loop by Yury Selivanov · 9 years ago
  75. dddc781 asyncio: Sync with github by Yury Selivanov · 9 years ago
  76. 0f3c976 asyncio: Fix with github by Yury Selivanov · 9 years ago
  77. d59bba8 asyncio: Drop "value" parameter from Task._step method. by Yury Selivanov · 9 years ago
  78. 41f69f4 Issue #25593: Change semantics of EventLoop.stop(). by Guido van Rossum · 9 years ago
  79. b3dd6d7 asyncio: Error if awaiting in parallel on the same coroutine by Yury Selivanov · 9 years ago
  80. 5d7e3b6 asyncio: Cleanup Future API by Yury Selivanov · 9 years ago
  81. 0013cce asyncio: Sync with github by Yury Selivanov · 9 years ago
  82. a4afc48 asyncio: Optimize Task._wakeup by Yury Selivanov · 9 years ago
  83. 5bb1afb asyncio: Add Transport.is_closing() by Yury Selivanov · 9 years ago
  84. ade0412 asyncio: Optimize asyncio.sleep(0) by Yury Selivanov · 9 years ago
  85. d65c949 Issue #25523: Further a-to-an corrections. by Serhiy Storchaka · 9 years ago
  86. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  87. c44ecdf Issue #25441: asyncio: Raise error from drain() when socket is closed. by Guido van Rossum · 9 years ago
  88. 601953b Docs and one small improvement for issue #25304, by Vincent Michel. by Guido van Rossum · 9 years ago
  89. b9bf913 Issue #23972: updates to asyncio datagram API. By Chris Laws. by Guido van Rossum · 9 years ago
  90. 841d9ee Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel. by Guido van Rossum · 9 years ago
  91. 620279b asyncio: ensure_future() now understands awaitables by Yury Selivanov · 9 years ago
  92. d455a50 Also rewrote the guts of asyncio.Semaphore (patch by manipopopo). by Guido van Rossum · 9 years ago
  93. d94c1b9 Fix StreamReader.__repr__ by Andrew Svetlov · 9 years ago
  94. 99f96c5 Issue #25233: Rewrite the guts of Queue to be more understandable and correct. by Guido van Rossum · 9 years ago
  95. 5e4a7d8 Issue #23630, asyncio: host parameter of loop.create_server() can now be a by Victor Stinner · 9 years ago
  96. f7dc7fb Issue #25114, asyncio: add ssl_object extra info to SSL transports by Victor Stinner · 9 years ago
  97. 2339833 Issue #24867: Fix Task.get_stack() for 'async def' coroutines by Yury Selivanov · 9 years ago
  98. 159fbdd Issue #23812: Fix getter-cancellation with many pending getters code path by Yury Selivanov · 9 years ago
  99. 8c125eb asyncio: Make sure BaseException is re-raised in SSLProtocol by Yury Selivanov · 9 years ago
  100. 3fc0f2d Issue #23812: Fix asyncio.Queue.get() to avoid loosing items on cancellation. by Yury Selivanov · 9 years ago