1. 79fd962 asyncio: Fix _SelectorTransport.__repr__() if the event loop is closed by Victor Stinner · 9 years ago
  2. e7a2f64 asyncio: Fix warning in test_close_kill_running() by Victor Stinner · 9 years ago
  3. 4088ad9 Issue #23475, asyncio: Fix test_close_kill_running() by Victor Stinner · 9 years ago
  4. 4cb814c asyncio, Tulip issue 220: Merge JoinableQueue with Queue. by Victor Stinner · 9 years ago
  5. 85c3033 Use os.devnull instead of hardcoded '/dev/null'. by Serhiy Storchaka · 9 years ago
  6. 8e36812 asyncio: BaseSubprocessTransport.close() doesn't try to kill the process if it by Victor Stinner · 9 years ago
  7. 2fc2313 asyncio: Only call _check_resolved_address() in debug mode by Victor Stinner · 9 years ago
  8. f2e43cb Issue #23347, asyncio: send_signal(), terminate(), kill() don't check if the by Victor Stinner · 10 years ago
  9. 0698638 asyncio: Fix ResourceWarning in test_subprocess.test_proc_exit() by Victor Stinner · 10 years ago
  10. 47cd10d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  11. 978a9af Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transport by Victor Stinner · 10 years ago
  12. 2934262 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  13. 47bbea7 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  14. fa73779 asyncio: Fix _SelectorSocketTransport constructor by Victor Stinner · 10 years ago
  15. b507cba asyncio: Fix SSLProtocol.eof_received() by Victor Stinner · 10 years ago
  16. ff018e4 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  17. e0fd157 Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() as a coroutine by Victor Stinner · 10 years ago
  18. 442b0ad asyncio: pyflakes, remove unused import by Victor Stinner · 10 years ago
  19. cd0f7f9 asyncio: Enhance BaseProactorEventLoop._loop_self_reading() by Victor Stinner · 10 years ago
  20. f716d8b Issue #22685: Fix test_pause_reading() of asyncio/test_subprocess by Victor Stinner · 10 years ago
  21. 922bc2c Closes #23219: cancelling asyncio.wait_for() now cancels the task by Victor Stinner · 10 years ago
  22. ab8848b asyncio: Close transports in tests by Victor Stinner · 10 years ago
  23. 02392c9 Issue #23243: Close explicitly transports in asyncio tests by Victor Stinner · 10 years ago
  24. 33cb039 Issue #23243: Close explicitly event loops in asyncio tests by Victor Stinner · 10 years ago
  25. 41ed958 Issue #23243: Fix asyncio._UnixWritePipeTransport.close() by Victor Stinner · 10 years ago
  26. 29ad011 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  27. 177e9f0 Issue #23197, asyncio: On SSL handshake failure, check if the waiter is by Victor Stinner · 10 years ago
  28. f651a60 Python issue #23173: sync with Tulip by Victor Stinner · 10 years ago
  29. 231b404 Issue #22560: New SSL implementation based on ssl.MemoryBIO by Victor Stinner · 10 years ago
  30. 9036e49 Tulip issue 184: Fix test_pipe() on Windows by Victor Stinner · 10 years ago
  31. 70db9e4 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  32. 15cc678 asyncio: Truncate to 80 columns by Victor Stinner · 10 years ago
  33. 212994e Issue #23140, asyncio: Simplify the unit test by Victor Stinner · 10 years ago
  34. c447ba0 Issue #23140, asyncio: Fix cancellation of Process.wait(). Check the state of by Victor Stinner · 10 years ago
  35. 956de69 Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods of by Victor Stinner · 10 years ago
  36. d7ff5a5 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  37. 4d825b4 asyncio: IocpProactor.wait_for_handle() test now also checks the result of the by Victor Stinner · 10 years ago
  38. dc7765d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  39. 3a1c738 Issue #23074: asyncio.get_event_loop() now raises an exception if the thread by Victor Stinner · 10 years ago
  40. 1e40f10 asyncio, tulip issue 209: Fix subprocess for close_fds=False on Python 3.3 by Victor Stinner · 10 years ago
  41. df75d5b asyncio, tulip issue 202: Add unit test of pause/resume writing for proactor by Victor Stinner · 10 years ago
  42. f3e2e09 Closes #22429, asyncio: Fix EventLoop.run_until_complete(), don't stop the by Victor Stinner · 10 years ago
  43. e80bf0d Closes #22922: More EventLoop methods fail if the loop is closed. Initial patch by Victor Stinner · 10 years ago
  44. dd8224e Issue #22685: Fix test_pause_reading() of asyncio test_subprocess by Victor Stinner · 10 years ago
  45. 56a6d85 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  46. cbbd04d Issue #22685: Debug test_pause_reading() on FreeBSD by Victor Stinner · 10 years ago
  47. 5ef586f Closes #22685, asyncio: Set the transport of stdout and stderr StreamReader by Victor Stinner · 10 years ago
  48. 7243b57 don't require OpenSSL SNI to pass hostname to ssl functions (#22921) by Benjamin Peterson · 10 years ago
  49. 2d99d93 asyncio: Coroutine objects are now rejected with a TypeError by the following by Victor Stinner · 10 years ago
  50. c1ad35a asyncio, test_events: Ignore the "SSL handshake failed" log in debug mode by Victor Stinner · 10 years ago
  51. 662fd5f asyncio: Fix formatting of the "Future exception was never retrieved" in by Victor Stinner · 10 years ago
  52. e36fcde - Issue #22841: Reject coroutines in asyncio add_signal_handler(). by Guido van Rossum · 10 years ago
  53. 50219fc Closes #22784: fix test_asyncio when the ssl module isn't available by Antoine Pitrou · 10 years ago
  54. 004adb9 asyncio: Move loop attribute to _FlowControlMixin by Victor Stinner · 10 years ago
  55. f23530f Issue #22186: Fix typos in Lib/. by Berker Peksag · 10 years ago
  56. 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
  57. f67f460 Issue #18643: asyncio.windows_utils now reuse socket.socketpair() on Windows if by Victor Stinner · 10 years ago
  58. c8bd53f Issue #22601: run_forever() now consumes BaseException of the temporary task by Victor Stinner · 10 years ago
  59. d5a8f58 asyncio.test_tasks: Fix test_env_var_debug to use correct asyncio module by Yury Selivanov · 10 years ago
  60. 592ada9 asyncio: Improve canceled timer handles cleanup. Closes issue #22448. by Yury Selivanov · 10 years ago
  61. 1b38bc6 asyncio, Tulip issue 206: In debug mode, keep the callback in the by Victor Stinner · 10 years ago
  62. d5aeccf9 asyncio, Tulip issue 205: Fix a race condition in BaseSelectorEventLoop.sock_connect() by Victor Stinner · 10 years ago
  63. 59e0802 asyncio, Tulip issue 201: Fix a race condition in wait_for() by Victor Stinner · 10 years ago
  64. 52bb949 asyncio, tulip issue 203: Add _FlowControlMixin.get_write_buffer_limits() method by Victor Stinner · 10 years ago
  65. b261475 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  66. 9c9f1f1 Close #22063: socket operations (socket,recv, sock_sendall, sock_connect, by Victor Stinner · 10 years ago
  67. f2ed889 asyncio: Use the new os.set_blocking() function of Python 3.5 if available by Victor Stinner · 10 years ago
  68. 313a980 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  69. f21fcd0 Accept optional lock object in Condition ctor (tulip issue #198) by Andrew Svetlov · 10 years ago
  70. 2955a0b asyncio, test_subprocess: relax timings for slow builbots by Victor Stinner · 10 years ago
  71. fea6a10 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  72. 0e24361 asyncio tests: relax timings for slow buildbots by Victor Stinner · 10 years ago
  73. f012ba4 Issue #22002: Make full use of test discovery in test sub-packages. by Zachary Ware · 10 years ago
  74. c4c4649 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  75. 0dee8ad asyncio: Fix test_stdin_broken_pipe(), drain() is not a coroutine by Victor Stinner · 10 years ago
  76. 98fa332 Issue #21247: Fix a race condition in test_send_signal() of asyncio by Victor Stinner · 10 years ago
  77. fe5649c Python issue #21645, Tulip issue 192: Rewrite signal handling by Victor Stinner · 10 years ago
  78. ddc8c8d asyncio: Fix test_stdin_broken_pipe(), drain() can also raise by Victor Stinner · 10 years ago
  79. cc996b5 asyncio, tulip issue 190: Process.communicate() must ignore BrokenPipeError by Victor Stinner · 10 years ago
  80. accef5c asyncio: test_as_completed(): disable "slow callback" warning by Victor Stinner · 10 years ago
  81. e931f7b Issue #21163: Fix "destroy pending task" warning in test_wait_errors() by Victor Stinner · 10 years ago
  82. 1314f06 asyncio: test_selector_events: remove duplicate call to _on_handshake() method by Victor Stinner · 10 years ago
  83. 1cae9ec asyncio tests: make quiet the logs of SSL handshake failures when running tests by Victor Stinner · 10 years ago
  84. acdb782 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  85. e912e65 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  86. 770e48d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  87. 737c34f asyncio: sync with Tulip by Victor Stinner · 10 years ago
  88. c39ba7d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  89. f68bd88 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  90. bfff45d asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits by Victor Stinner · 10 years ago
  91. 896a25a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  92. a9acbe8 Closes #21886, #21447: Fix a race condition in asyncio when setting the result by Victor Stinner · 10 years ago
  93. 2dba23a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  94. 1690ed3 asyncio: Fix test_sleep_cancel(): call_later() mock has no self parameter by Victor Stinner · 10 years ago
  95. b75380f asyncio: sync with Tulip by Victor Stinner · 10 years ago
  96. f951d28 asyncio: sync with Tulip, add a new asyncio.coroutines module by Victor Stinner · 10 years ago
  97. 09e7590 asyncio: Fix two "Coroutine xxx was never yielded from" messages in tests by Victor Stinner · 10 years ago
  98. b9a301a asyncio: Fix unit tests on Windows, escape filenames in regex by Victor Stinner · 10 years ago
  99. 80f53aa asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and by Victor Stinner · 10 years ago
  100. bbd96c6 asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutine by Victor Stinner · 10 years ago