1. d5c2a62 asyncio: Skip getaddrinfo if host is already resolved. by Yury Selivanov · 9 years ago
  2. 41f69f4 Issue #25593: Change semantics of EventLoop.stop(). by Guido van Rossum · 9 years ago
  3. b9bf913 Issue #23972: updates to asyncio datagram API. By Chris Laws. by Guido van Rossum · 9 years ago
  4. 5e4a7d8 Issue #23630, asyncio: host parameter of loop.create_server() can now be a by Victor Stinner · 9 years ago
  5. 2a8911c asyncio: Sync with upstream (compat module) by Yury Selivanov · 9 years ago
  6. 996083d asyncio: Sync with mainstream by Yury Selivanov · 9 years ago
  7. e8944cb asyncio: Make sure sys.set_coroutine_wrapper is called *only* when loop is running. by Yury Selivanov · 9 years ago
  8. 1af2bf7 asyncio: Support PEP 492. Issue #24017. by Yury Selivanov · 9 years ago
  9. 59eb9a4 asyncio: async() function is deprecated in favour of ensure_future(). by Yury Selivanov · 9 years ago
  10. 740169c Sync asyncio changes from the main repo. by Yury Selivanov · 9 years ago
  11. a87501f asyncio: BaseEventLoop: rename _owner to _thread_id by Victor Stinner · 10 years ago
  12. 2fc2313 asyncio: Only call _check_resolved_address() in debug mode by Victor Stinner · 10 years ago
  13. 978a9af Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transport by Victor Stinner · 10 years ago
  14. ff018e4 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  15. 9b524d5 Issue #23208, asyncio: Add BaseEventLoop._current_handle by Victor Stinner · 10 years ago
  16. 2596dd0 asyncio: Close transports on error by Victor Stinner · 10 years ago
  17. 0c2e408 asyncio: BaseEventLoop._create_connection_transport() catchs any exception, not by Victor Stinner · 10 years ago
  18. 442b0ad asyncio: pyflakes, remove unused import by Victor Stinner · 10 years ago
  19. 29ad011 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  20. 15cc678 asyncio: Truncate to 80 columns by Victor Stinner · 10 years ago
  21. 8d9c145 asyncio: _make_ssl_transport: make the waiter parameter optional by Victor Stinner · 10 years ago
  22. 8c1a4a2 Issue #23046: Expose the BaseEventLoop class in the asyncio namespace by Victor Stinner · 10 years ago
  23. 956de69 Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods of by Victor Stinner · 10 years ago
  24. 3a1c738 Issue #23074: asyncio.get_event_loop() now raises an exception if the thread by Victor Stinner · 10 years ago
  25. f3e2e09 Closes #22429, asyncio: Fix EventLoop.run_until_complete(), don't stop the by Victor Stinner · 10 years ago
  26. e80bf0d Closes #22922: More EventLoop methods fail if the loop is closed. Initial patch by Victor Stinner · 10 years ago
  27. 2d99d93 asyncio: Coroutine objects are now rejected with a TypeError by the following by Victor Stinner · 10 years ago
  28. c8bd53f Issue #22601: run_forever() now consumes BaseException of the temporary task by Victor Stinner · 10 years ago
  29. 68da8fc Issue #22448: asyncio, cleanup _run_once(), only iterate once to remove delayed by Victor Stinner · 10 years ago
  30. 592ada9 asyncio: Improve canceled timer handles cleanup. Closes issue #22448. by Yury Selivanov · 10 years ago
  31. b261475 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  32. 5006b1f Issue #20055: Fix BaseEventLoop.stop() docstring, incomplete sentence. by Victor Stinner · 10 years ago
  33. acdb782 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  34. e912e65 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  35. 8ebeb03 asyncio: improve the documentation of servers by Victor Stinner · 10 years ago
  36. b28dbac asyncio, Tulip issue 180: Make Server attributes and methods private by Victor Stinner · 10 years ago
  37. 770e48d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  38. c39ba7d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  39. bfff45d asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits by Victor Stinner · 10 years ago
  40. 896a25a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  41. 98b6391 Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly() by Victor Stinner · 10 years ago
  42. b75380f asyncio: sync with Tulip by Victor Stinner · 10 years ago
  43. f951d28 asyncio: sync with Tulip, add a new asyncio.coroutines module by Victor Stinner · 10 years ago
  44. 80f53aa asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and by Victor Stinner · 10 years ago
  45. 751c7c0 asyncio: Fix BaseEventLoop._assert_is_current_event_loop(): get_event_loop() by Victor Stinner · 10 years ago
  46. f328c7d asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the by Victor Stinner · 10 years ago
  47. 1580fe3 asyncio, Tulip issue 172: only log selector timing in debug mode by Victor Stinner · 10 years ago
  48. 7b7120e asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUG by Victor Stinner · 10 years ago
  49. d6de5d8 asyncio: BaseEventLoop._assert_is_current_event_loop() now only raises an by Victor Stinner · 10 years ago
  50. 0e6f52a asyncio, Tulip issue 105: in debug mode, log callbacks taking more than 100 ms by Victor Stinner · 10 years ago
  51. d143209 Tulip issue 83: document more asyncio functions in docstrings by Victor Stinner · 10 years ago
  52. bb2fc5b Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop by Victor Stinner · 10 years ago
  53. 223a624 Issue #21119: asyncio now closes sockets on errors by Victor Stinner · 10 years ago
  54. 3d1bc60 asyncio: Upstream issue #167: remove dead code, by Marc Schlaich. by Guido van Rossum · 10 years ago
  55. 93569c2 asyncio: Ensure call_soon(), call_later() and call_at() are invoked on current by Victor Stinner · 11 years ago
  56. 934c885 asyncio: _check_resolved_address() must also accept IPv6 without flow_info and by Victor Stinner · 11 years ago
  57. d1a727a asyncio: Fix _check_resolved_address() for IPv6 address by Victor Stinner · 11 years ago
  58. 0f3e6bc asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests. by Victor Stinner · 11 years ago
  59. 5779752 asyncio: pep8-ify the code. by Yury Selivanov · 11 years ago
  60. 569efa2 asyncio: New error handling API. Issue #20681. by Yury Selivanov · 11 years ago
  61. b057c52 asyncio: Add support for UNIX Domain Sockets. by Yury Selivanov · 11 years ago
  62. 1b0580b ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if by Victor Stinner · 11 years ago
  63. 613960b Issue #20505: Remove debug code by Victor Stinner · 11 years ago
  64. 20e0743 asyncio, Tulip issue 130: Add more checks on subprocess_exec/subprocess_shell by Victor Stinner · 11 years ago
  65. 9af4a24 asyncio, Tulip issue 126: call_soon(), call_soon_threadsafe(), call_later(), by Victor Stinner · 11 years ago
  66. 262a458 Issue #20505: use also the monotonic time to decide if asyncio debug traces by Victor Stinner · 11 years ago
  67. 7c4bd39 Issue #20505: Oops, only print debug info if selector.select(timeout) took less by Victor Stinner · 11 years ago
  68. 8425bf8 Issue #20505: Improve debug info in asyncio event loop by Victor Stinner · 11 years ago
  69. ed1654f Issue #20505: BaseEventLoop uses again the resolution of the clock to decide if by Victor Stinner · 11 years ago
  70. 1c143b1 Issue #20505: Add debug info to analyze sporaric failures of by Victor Stinner · 11 years ago
  71. dc62b7e asyncio: Tulip issue 112: Inline make_handle() into Handle constructor by Victor Stinner · 11 years ago
  72. 85310a5 Issue #20505: Remove resolution and _granularity from selectors and asyncio by Victor Stinner · 11 years ago
  73. 3e7cc03 Issue #20505: add debug info by Victor Stinner · 11 years ago
  74. 49d0f4e Issue #20452: Remove debug code, no more needed by Victor Stinner · 11 years ago
  75. 323748e asyncio: Fix error message in BaseEventLoop.subprocess_shell(). Patch written by Victor Stinner · 11 years ago
  76. dcd9740 Issue #20452: select and selectors round (again) timeout away from zero for by Victor Stinner · 11 years ago
  77. 31f6504 Issue #20452: Oops, fix debug code :-/ by Victor Stinner · 11 years ago
  78. 0278032 Issue #20452: add more info in case of test_asyncio failure to try to debug the by Victor Stinner · 11 years ago
  79. e623a12 asyncio: subprocess_shell() and subprocess_exec() now raise ValueError instead of assert. by Victor Stinner · 11 years ago
  80. 669eeaf Merge latest Tulip into asyncio by Victor Stinner · 11 years ago
  81. f67255a Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximum by Victor Stinner · 11 years ago
  82. 4a2dbeb asyncio: Cleanup logging in BaseEventLoop._run_once() by Victor Stinner · 11 years ago
  83. 22463aa Close #20275: Optimize BaseEventLoop._run_once() by Victor Stinner · 11 years ago
  84. 68600c7 asyncio: Fix space in log message about poll time. by Guido van Rossum · 11 years ago
  85. 28dff0d asyncio: Better-looking errors when ssl module cannot be imported. In part by Arnaud Faure. by Guido van Rossum · 11 years ago
  86. a8d630a asyncio: Various style nits. by Guido van Rossum · 11 years ago
  87. e3f52ef asyncio: Document EventLoop.close(). by Guido van Rossum · 11 years ago
  88. 21c85a7 asyncio: Add server_hostname as create_connection() argument, with secure default. by Guido van Rossum · 11 years ago
  89. 32e4685 (Hopefully) proper fix for gentoo buildbot failure due to lacking AF_INET6 support. by Guido van Rossum · 11 years ago
  90. 4ca7355 Issue #19299: fix refleak test failures in test_asyncio by Antoine Pitrou · 11 years ago
  91. fc29e0f Rename the logger to plain "logger". by Guido van Rossum · 11 years ago
  92. 27b7c7e Initial checkin of asyncio package (== Tulip, == PEP 3156). by Guido van Rossum · 11 years ago