1. 72e1eae Issue #25114: Fix test_asyncio by Victor Stinner · 9 years ago
  2. 5e4a7d8 Issue #23630, asyncio: host parameter of loop.create_server() can now be a by Victor Stinner · 9 years ago
  3. f7dc7fb Issue #25114, asyncio: add ssl_object extra info to SSL transports by Victor Stinner · 9 years ago
  4. 2fc2313 asyncio: Only call _check_resolved_address() in debug mode by Victor Stinner · 10 years ago
  5. 47cd10d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  6. 2934262 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  7. 29ad011 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  8. 231b404 Issue #22560: New SSL implementation based on ssl.MemoryBIO by Victor Stinner · 10 years ago
  9. d7ff5a5 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  10. dc7765d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  11. 3a1c738 Issue #23074: asyncio.get_event_loop() now raises an exception if the thread by Victor Stinner · 10 years ago
  12. e80bf0d Closes #22922: More EventLoop methods fail if the loop is closed. Initial patch by Victor Stinner · 10 years ago
  13. 7243b57 don't require OpenSSL SNI to pass hostname to ssl functions (#22921) by Benjamin Peterson · 10 years ago
  14. c1ad35a asyncio, test_events: Ignore the "SSL handshake failed" log in debug mode by Victor Stinner · 10 years ago
  15. 662fd5f asyncio: Fix formatting of the "Future exception was never retrieved" in by Victor Stinner · 10 years ago
  16. 50219fc Closes #22784: fix test_asyncio when the ssl module isn't available by Antoine Pitrou · 10 years ago
  17. fd39a89 Issue #22641: In asyncio, the default SSL context for client connections is now created using ssl.create_default_context(), for stronger security. by Antoine Pitrou · 10 years ago
  18. 592ada9 asyncio: Improve canceled timer handles cleanup. Closes issue #22448. by Yury Selivanov · 10 years ago
  19. 1b38bc6 asyncio, Tulip issue 206: In debug mode, keep the callback in the by Victor Stinner · 10 years ago
  20. b261475 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  21. 9c9f1f1 Close #22063: socket operations (socket,recv, sock_sendall, sock_connect, by Victor Stinner · 10 years ago
  22. 1cae9ec asyncio tests: make quiet the logs of SSL handshake failures when running tests by Victor Stinner · 10 years ago
  23. 770e48d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  24. f68bd88 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  25. bfff45d asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits by Victor Stinner · 10 years ago
  26. 896a25a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  27. 80f53aa asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and by Victor Stinner · 10 years ago
  28. 975735f asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandle by Victor Stinner · 10 years ago
  29. f328c7d asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the by Victor Stinner · 10 years ago
  30. c73701d asyncio: Refactor tests: add a base TestCase class by Victor Stinner · 10 years ago
  31. 307bccc asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task) by Victor Stinner · 10 years ago
  32. 27d4112 Issue #21651: Fix ResourceWarning when running asyncio tests on Windows. by Victor Stinner · 10 years ago
  33. 94ba146 asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166. by Guido van Rossum · 10 years ago
  34. 1fd03a4 Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError if by Victor Stinner · 10 years ago
  35. e6a5379 asyncio, Tulip issue 157: Improve test_events.py, avoid run_briefly() which is by Victor Stinner · 10 years ago
  36. eeeebcd asyncio: Synchronize with Tulip by Victor Stinner · 10 years ago
  37. 658103f asyncio: simplify test_events.py, don't use non local variables and don't call by Victor Stinner · 10 years ago
  38. f5e3703 asyncio: Fix pyflakes warnings: remove unused variables and imports by Victor Stinner · 10 years ago
  39. 24ba203 asyncio: Replace "unittest.mock" with "mock" in unit tests by Victor Stinner · 10 years ago
  40. a90e8ed asyncio: _check_resolved_address() must also accept IPv6 without flow_info and by Victor Stinner · 10 years ago
  41. 0211ed3 asyncio: ops, and now fix also the unit test for IPv6 address: by Victor Stinner · 10 years ago
  42. 4ac30f1 Issue #20682: Oops, fix test_create_connection() of test_asyncio (fix my previous commit) by Victor Stinner · 10 years ago
  43. 8c33ffd Close #20682: Fix UNIX sockets tests of test_asyncio on Mac OS X Tiger by Victor Stinner · 10 years ago
  44. b0b0e62 asyncio: Fix spelling and typos. by Yury Selivanov · 10 years ago
  45. 8abac34 Issue #20682: test_asyncio, _basetest_create_connection() checks also the by Victor Stinner · 10 years ago
  46. ff827f0 asyncio: New error handling API. Issue #20681. by Yury Selivanov · 10 years ago
  47. 88a5bf0 asyncio: Add support for UNIX Domain Sockets. by Yury Selivanov · 10 years ago
  48. 9141bff Issue #20667: KqueueEventLoopTests.test_read_pty_output() hangs also on OpenBSD 5.5. by Victor Stinner · 10 years ago
  49. 5afffea Issue #20667: test_asyncio: Skip KqueueEventLoopTests.test_read_pty_output() on by Victor Stinner · 10 years ago
  50. 1ff0ee0 Fix test_asyncio/test_events.py: skip IPv6 if IPv6 is disabled on the host by Victor Stinner · 10 years ago
  51. 2877346 ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if by Victor Stinner · 10 years ago
  52. 13b493e Issue #20495: Skip test_read_pty_output() of test_asyncio on FreeBSD older than by Victor Stinner · 10 years ago
  53. 6cf5c96 Issue #20505: BaseEventLoop uses again the resolution of the clock to decide if by Victor Stinner · 10 years ago
  54. cf736f4 Issue #20505: Use even shorter sleep in test_timeout_rounding() to make the by Victor Stinner · 10 years ago
  55. 1c143b1 Issue #20505: Add debug info to analyze sporaric failures of by Victor Stinner · 10 years ago
  56. dc62b7e asyncio: Tulip issue 112: Inline make_handle() into Handle constructor by Victor Stinner · 10 years ago
  57. 85310a5 Issue #20505: Remove resolution and _granularity from selectors and asyncio by Victor Stinner · 10 years ago
  58. 1703bbb Oops, undo unwanted changes in test_asyncio: mistakes of my the last sync with by Victor Stinner · 11 years ago
  59. 9dd39f5 Issue #20472: test_asyncio: skip PTY tests on Mac OS X older than 10.6 by Victor Stinner · 11 years ago
  60. 915bcb0 Issue #20400: Merge Tulip into Python: add the new asyncio.subprocess module by Victor Stinner · 11 years ago
  61. 1144214 Issue #20452: test_asyncio checks also the granularity by Victor Stinner · 11 years ago
  62. 49d0f4e Issue #20452: Remove debug code, no more needed by Victor Stinner · 11 years ago
  63. dcd9740 Issue #20452: select and selectors round (again) timeout away from zero for by Victor Stinner · 11 years ago
  64. 31f6504 Issue #20452: Oops, fix debug code :-/ by Victor Stinner · 11 years ago
  65. 0278032 Issue #20452: add more info in case of test_asyncio failure to try to debug the by Victor Stinner · 11 years ago
  66. e623a12 asyncio: subprocess_shell() and subprocess_exec() now raise ValueError instead of assert. by Victor Stinner · 11 years ago
  67. 669eeaf Merge latest Tulip into asyncio by Victor Stinner · 11 years ago
  68. 128ee22 asyncio: Don't export BaseEventLoop, BaseSelectorEventLoop nor by Victor Stinner · 11 years ago
  69. 8dffc45 Update asyncio from the Tulip project by Victor Stinner · 11 years ago
  70. f67255a Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximum by Victor Stinner · 11 years ago
  71. 8ce6e11 Close #20365: Skip test_asyncio.test_events.test_read_pty_output() on Mac OS X by Victor Stinner · 11 years ago
  72. 02757ea asyncio: Minimal pty support in UNIX read pipe, by Jonathan Slenders. by Guido van Rossum · 11 years ago
  73. 994bf43 Shorten lines. by Guido van Rossum · 11 years ago
  74. a5f0eda Skip some tests that require server name indication (SNI) by Christian Heimes · 11 years ago
  75. 101d9e7 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  76. cd6f611 copy 'n paste typo (thx Antoine) by Christian Heimes · 11 years ago
  77. b82c915 Skip new SSL tests with IocpEventLoop by Christian Heimes · 11 years ago
  78. 6d8c1ab Issue #19509: Finish implementation of check_hostname by Christian Heimes · 11 years ago
  79. cced076 asyncio: Fix get_event_loop() to call set_event_loop() when setting the loop. By Anthony Baire. by Guido van Rossum · 11 years ago
  80. 27bfe46 asyncio: Hopeful fix for issue 19765. by Guido van Rossum · 11 years ago
  81. d41c343 asyncio: Use socketpair() from test_utils in tests (Saúl Ibarra Corretgé). by Guido van Rossum · 11 years ago
  82. 2335de7 asyncio: Replace connection_refused() with error_received(). by Guido van Rossum · 11 years ago
  83. e048add Issue #19589: Use specific asserts in asyncio tests. by Serhiy Storchaka · 11 years ago
  84. 2bcae70 asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix). by Guido van Rossum · 11 years ago
  85. 0eaa5ac asyncio: Refactor SIGCHLD handling. By Anthony Baire. by Guido van Rossum · 11 years ago
  86. 2902b6d Relax test for process return code on Windows. by Richard Oudkerk · 11 years ago
  87. a8d630a asyncio: Various style nits. by Guido van Rossum · 11 years ago
  88. e3f52ef asyncio: Document EventLoop.close(). by Guido van Rossum · 11 years ago
  89. 5969128 asyncio: Add support for running subprocesses on Windows with the IOCP event loop (Richard Oudkerk). by Guido van Rossum · 11 years ago
  90. b0fb94d Fix asyncio issue #19293 (hangs on AIX). by Guido van Rossum · 11 years ago
  91. f75debd Unsilence several asyncio AIX tests that no longer hang, and silence a new hang. by Guido van Rossum · 11 years ago
  92. 8a0fe85 Avoid test_asyncio hang on AIX. by Guido van Rossum · 11 years ago
  93. bcd7682 Issue #19309: asyncio: make waitpid() wait for all child processes, not only by Charles-François Natali · 11 years ago
  94. 92945c5 Un-backout e3ec6b17260c - the test fix was actually also necessary by Antoine Pitrou · 11 years ago
  95. c1b7841 Backout e3ec6b17260c after Guido's fix by Antoine Pitrou · 11 years ago
  96. d20afad Issue #19305: try to fix sporadic test_asyncio failure on FreeBSD 10.0 by Antoine Pitrou · 11 years ago
  97. 0d9eefd Try to fix test_asyncio dual stack test when creating an IPv6 socket fails by Antoine Pitrou · 11 years ago
  98. 3743711 Disable some subprocess tests that hang on AIX. by Guido van Rossum · 11 years ago
  99. 051a331 Relax some asyncio test timeouts (http://bugs.python.org/issue19285). by Guido van Rossum · 11 years ago
  100. 57497ad Rename Transport.pause/resume to pause_reading/pause_writing. Also relax timeout in test_call_later(). by Guido van Rossum · 11 years ago