1. 0f3c976 asyncio: Fix with github by Yury Selivanov · 9 years ago
  2. d59bba8 asyncio: Drop "value" parameter from Task._step method. by Yury Selivanov · 9 years ago
  3. 41f69f4 Issue #25593: Change semantics of EventLoop.stop(). by Guido van Rossum · 9 years ago
  4. b3dd6d7 asyncio: Error if awaiting in parallel on the same coroutine by Yury Selivanov · 9 years ago
  5. 5d7e3b6 asyncio: Cleanup Future API by Yury Selivanov · 9 years ago
  6. 0013cce asyncio: Sync with github by Yury Selivanov · 9 years ago
  7. a4afc48 asyncio: Optimize Task._wakeup by Yury Selivanov · 9 years ago
  8. 5bb1afb asyncio: Add Transport.is_closing() by Yury Selivanov · 9 years ago
  9. ade0412 asyncio: Optimize asyncio.sleep(0) by Yury Selivanov · 9 years ago
  10. d65c949 Issue #25523: Further a-to-an corrections. by Serhiy Storchaka · 9 years ago
  11. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  12. c44ecdf Issue #25441: asyncio: Raise error from drain() when socket is closed. by Guido van Rossum · 9 years ago
  13. 601953b Docs and one small improvement for issue #25304, by Vincent Michel. by Guido van Rossum · 9 years ago
  14. b9bf913 Issue #23972: updates to asyncio datagram API. By Chris Laws. by Guido van Rossum · 9 years ago
  15. 841d9ee Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel. by Guido van Rossum · 9 years ago
  16. 620279b asyncio: ensure_future() now understands awaitables by Yury Selivanov · 9 years ago
  17. d455a50 Also rewrote the guts of asyncio.Semaphore (patch by manipopopo). by Guido van Rossum · 9 years ago
  18. d94c1b9 Fix StreamReader.__repr__ by Andrew Svetlov · 9 years ago
  19. 99f96c5 Issue #25233: Rewrite the guts of Queue to be more understandable and correct. by Guido van Rossum · 9 years ago
  20. 5e4a7d8 Issue #23630, asyncio: host parameter of loop.create_server() can now be a by Victor Stinner · 9 years ago
  21. f7dc7fb Issue #25114, asyncio: add ssl_object extra info to SSL transports by Victor Stinner · 9 years ago
  22. 2339833 Issue #24867: Fix Task.get_stack() for 'async def' coroutines by Yury Selivanov · 9 years ago
  23. 159fbdd Issue #23812: Fix getter-cancellation with many pending getters code path by Yury Selivanov · 9 years ago
  24. 8c125eb asyncio: Make sure BaseException is re-raised in SSLProtocol by Yury Selivanov · 9 years ago
  25. 3fc0f2d Issue #23812: Fix asyncio.Queue.get() to avoid loosing items on cancellation. by Yury Selivanov · 9 years ago
  26. 2a8911c asyncio: Sync with upstream (compat module) by Yury Selivanov · 9 years ago
  27. 996083d asyncio: Sync with mainstream by Yury Selivanov · 9 years ago
  28. 4c0a09a Revert da29a94367b2 by Yury Selivanov · 9 years ago
  29. 6b3f29c asyncio: Fix code style by Yury Selivanov · 9 years ago
  30. 6fb1e74 Fix ResourceWarning in asyncio.BaseSubprocessTransport by Victor Stinner · 9 years ago
  31. eaf16ab asyncio: sync with github by Victor Stinner · 9 years ago
  32. 71080fc asyncio: Add asyncio.compat module by Victor Stinner · 9 years ago
  33. e6ecea5 asyncio: sync with github asyncio by Victor Stinner · 9 years ago
  34. 09e6058 Issue #24450: Proxy gi_yieldfrom & cr_await in asyncio.CoroWrapper by Yury Selivanov · 9 years ago
  35. 339d5e7 Fix asyncio unittests in debug mode by Yury Selivanov · 9 years ago
  36. 29a602a Issue #24400: Fix CoroWrapper for 'async def' coroutines by Yury Selivanov · 9 years ago
  37. dfbd27f asyncio: Merge changes from issue #24400. by Yury Selivanov · 9 years ago
  38. 70adad2 Issue 24017: Fix asyncio.CoroWrapper to support 'async def' coroutines by Yury Selivanov · 9 years ago
  39. a316085 Issue 24004: Support Awaitables (pep 492) in @asyncio.coroutine decorator by Yury Selivanov · 9 years ago
  40. 1ad08a5 asyncio: Drop some useless code from tasks.py. by Yury Selivanov · 9 years ago
  41. c58cca5 asyncio: Use 'collections.abc.Coroutine' in asyncio.iscoroutine (in 3.5) by Yury Selivanov · 9 years ago
  42. d08c363 Sync asyncio code from default branch. by Yury Selivanov · 9 years ago
  43. e8944cb asyncio: Make sure sys.set_coroutine_wrapper is called *only* when loop is running. by Yury Selivanov · 9 years ago
  44. 1af2bf7 asyncio: Support PEP 492. Issue #24017. by Yury Selivanov · 9 years ago
  45. 59eb9a4 asyncio: async() function is deprecated in favour of ensure_future(). by Yury Selivanov · 9 years ago
  46. 740169c Sync asyncio changes from the main repo. by Yury Selivanov · 9 years ago
  47. 0a9933e Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions without __name__. by Guido van Rossum · 9 years ago
  48. 0bd16bc Fix asyncio issue 235: Queue subclass bug caused by JoinableQueue merge. by Guido van Rossum · 9 years ago
  49. c9d11c3 Issue #23879, asyncio: SelectorEventLoop.sock_connect() must not call connect() by Victor Stinner · 9 years ago
  50. 79fd962 asyncio: Fix _SelectorTransport.__repr__() if the event loop is closed by Victor Stinner · 9 years ago
  51. d6dc7bd Issue #23456: Add missing @coroutine decorators in asyncio by Victor Stinner · 9 years ago
  52. 7a82afe asyncio: Fix repr(BaseSubprocessTransport) if it didn't start yet by Victor Stinner · 9 years ago
  53. ce8c768 Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport by Victor Stinner · 9 years ago
  54. 4cb814c asyncio, Tulip issue 220: Merge JoinableQueue with Queue. by Victor Stinner · 9 years ago
  55. 4e82fb9 asyncio: BaseSubprocessTransport: repr() mentions when the child process is by Victor Stinner · 9 years ago
  56. 8e36812 asyncio: BaseSubprocessTransport.close() doesn't try to kill the process if it by Victor Stinner · 9 years ago
  57. a87501f asyncio: BaseEventLoop: rename _owner to _thread_id by Victor Stinner · 10 years ago
  58. 2fc2313 asyncio: Only call _check_resolved_address() in debug mode by Victor Stinner · 10 years ago
  59. aa41b9b asyncio: BaseSelectorEventLoop uses directly the private _debug attribute by Victor Stinner · 10 years ago
  60. 17d87f8 asyncio, Tulip issue 221: Fix doc of QueueEmpty and QueueFull by Victor Stinner · 10 years ago
  61. 5d44c08 Issue #23353, asyncio: Workaround CPython bug #23353 by Victor Stinner · 10 years ago
  62. f2e43cb Issue #23347, asyncio: send_signal(), terminate(), kill() don't check if the by Victor Stinner · 10 years ago
  63. 1241ecc Issue #23347, asyncio: Make BaseSubprocessTransport.wait() private by Victor Stinner · 10 years ago
  64. 47cd10d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  65. 978a9af Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transport by Victor Stinner · 10 years ago
  66. 2934262 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  67. 54a231d asyncio doc: document Protocol state machine by Victor Stinner · 10 years ago
  68. 47bbea7 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  69. 7b5a900 asyncio: BaseSubprocessTransport._kill_wait() now also call close() by Victor Stinner · 10 years ago
  70. fa73779 asyncio: Fix _SelectorSocketTransport constructor by Victor Stinner · 10 years ago
  71. f07801b asyncio: SSL transports now clear their reference to the waiter by Victor Stinner · 10 years ago
  72. b507cba asyncio: Fix SSLProtocol.eof_received() by Victor Stinner · 10 years ago
  73. ff018e4 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  74. 41063d2 asyncio, Tulip issue 204: Fix IocpProactor.recv() by Victor Stinner · 10 years ago
  75. 24dfa3c Issue #23095, asyncio: Fix _WaitHandleFuture.cancel() by Victor Stinner · 10 years ago
  76. e0fd157 Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() as a coroutine by Victor Stinner · 10 years ago
  77. 2a3f38f asyncio: PipeHandle.fileno() now raises an exception if the pipe is closed by Victor Stinner · 10 years ago
  78. a19b7b3 asyncio: Fix ProactorEventLoop.start_serving_pipe() by Victor Stinner · 10 years ago
  79. 9b524d5 Issue #23208, asyncio: Add BaseEventLoop._current_handle by Victor Stinner · 10 years ago
  80. 3d2256f Issue #23293, asyncio: Cleanup IocpProactor.close() by Victor Stinner · 10 years ago
  81. 2596dd0 asyncio: Close transports on error by Victor Stinner · 10 years ago
  82. 2b77c54 asyncio, Tulip issue 204: Fix IocpProactor.accept_pipe() by Victor Stinner · 10 years ago
  83. 7ffa2c5 Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() by Victor Stinner · 10 years ago
  84. 752aba7 asyncio: IocpProactor.close() doesn't cancel anymore futures which are already by Victor Stinner · 10 years ago
  85. 1ca9392 Issue #23095, asyncio: IocpProactor.close() must not cancel pending by Victor Stinner · 10 years ago
  86. 0c2e408 asyncio: BaseEventLoop._create_connection_transport() catchs any exception, not by Victor Stinner · 10 years ago
  87. d0a28de Issue #23095, asyncio: Rewrite _WaitHandleFuture.cancel() by Victor Stinner · 10 years ago
  88. 442b0ad asyncio: pyflakes, remove unused import by Victor Stinner · 10 years ago
  89. cd0f7f9 asyncio: Enhance BaseProactorEventLoop._loop_self_reading() by Victor Stinner · 10 years ago
  90. 406204c Backout changeset 6ab2575bc12b by Victor Stinner · 10 years ago
  91. 922bc2c Closes #23219: cancelling asyncio.wait_for() now cancels the task by Victor Stinner · 10 years ago
  92. 4bf22e0 asyncio: Close the transport on subprocess creation failure by Victor Stinner · 10 years ago
  93. fcd58de asyncio: Fix _ProactorBasePipeTransport.close() by Victor Stinner · 10 years ago
  94. 79c93ba asyncio: Fix _ProactorBasePipeTransport.__repr__() by Victor Stinner · 10 years ago
  95. 41ed958 Issue #23243: Fix asyncio._UnixWritePipeTransport.close() by Victor Stinner · 10 years ago
  96. 7e222f4 SSLProtocol: set the _transport attribute in the constructor by Victor Stinner · 10 years ago
  97. 791009b Issue #23242: asyncio.SubprocessStreamProtocol now closes the subprocess by Victor Stinner · 10 years ago
  98. 72bdefb Issue #22560: Fix typo: call -> call_soon by Victor Stinner · 10 years ago
  99. 042dad7 Issue #22560: Fix SSLProtocol._on_handshake_complete() by Victor Stinner · 10 years ago
  100. e7a3571 StreamWriter: close() now clears the reference to the transport by Victor Stinner · 10 years ago