1. f328c7d asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the by Victor Stinner · 10 years ago
  2. 1580fe3 asyncio, Tulip issue 172: only log selector timing in debug mode by Victor Stinner · 10 years ago
  3. 7b7120e asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUG by Victor Stinner · 10 years ago
  4. d6de5d8 asyncio: BaseEventLoop._assert_is_current_event_loop() now only raises an by Victor Stinner · 10 years ago
  5. 0e6f52a asyncio, Tulip issue 105: in debug mode, log callbacks taking more than 100 ms by Victor Stinner · 10 years ago
  6. d143209 Tulip issue 83: document more asyncio functions in docstrings by Victor Stinner · 10 years ago
  7. 54c4b8e Closes #21595: asyncio.BaseSelectorEventLoop._read_from_self() now reads all by Victor Stinner · 10 years ago
  8. c73701d asyncio: Refactor tests: add a base TestCase class by Victor Stinner · 10 years ago
  9. 8d3e02e asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator on by Victor Stinner · 10 years ago
  10. 66dc6b0 Issue #21723: asyncio.Queue: support any type of number (ex: float) for the by Victor Stinner · 10 years ago
  11. bc434e2 asyncio: Task.__repr__() now also handles CoroWrapper by Victor Stinner · 10 years ago
  12. 307bccc asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task) by Victor Stinner · 10 years ago
  13. db74d98 Issue #21596: asyncio.wait(): mention that the sequence of futures must not by Victor Stinner · 10 years ago
  14. bb2fc5b Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop by Victor Stinner · 10 years ago
  15. f9e49dd Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncio by Victor Stinner · 10 years ago
  16. a9fa266 Issue #21119: asyncio: Make sure that socketpair() close sockets on error by Victor Stinner · 10 years ago
  17. 223a624 Issue #21119: asyncio now closes sockets on errors by Victor Stinner · 10 years ago
  18. 8d21357 Issue #21601: Document asyncio.Task.cancel(). Initial patch written by Vajrasky by Victor Stinner · 10 years ago
  19. a5b257a Issue #21454: Fix asyncio.BaseEventLoop.connect_read_pipe doc by Victor Stinner · 10 years ago
  20. 3207a03 Fix for raising exception not derived from BaseException in _SelectorSslTransport.resume_reading by Andrew Svetlov · 10 years ago
  21. bf88ffb asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if data exceeds buffer limit. by Guido van Rossum · 10 years ago
  22. 3d1bc60 asyncio: Upstream issue #167: remove dead code, by Marc Schlaich. by Guido van Rossum · 10 years ago
  23. 3d139d8 asyncio: Fix the second half of issue #21447: race in _write_to_self(). by Guido van Rossum · 10 years ago
  24. 94ba146 asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166. by Guido van Rossum · 10 years ago
  25. 83c1ddd asyncio: Be careful accessing instance variables in __del__ (closes #21340). by Guido van Rossum · 10 years ago
  26. 0cbc768 asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163). by Guido van Rossum · 10 years ago
  27. 09cc169 asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctly by Yury Selivanov · 10 years ago
  28. f15f748 asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1 by Yury Selivanov · 10 years ago
  29. 1fd03a4 Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError if by Victor Stinner · 10 years ago
  30. 4bd652a asyncio: Document Task.cancel() properly. by Victor Stinner · 10 years ago
  31. 93569c2 asyncio: Ensure call_soon(), call_later() and call_at() are invoked on current by Victor Stinner · 10 years ago
  32. e6a5379 asyncio, Tulip issue 157: Improve test_events.py, avoid run_briefly() which is by Victor Stinner · 10 years ago
  33. eeeebcd asyncio: Synchronize with Tulip by Victor Stinner · 10 years ago
  34. d74ac82 asyncio, Tulip issue 158: Task._step() now also sets self to None if an by Victor Stinner · 10 years ago
  35. c89c8a7 asyncio/windows_events.py: use more revelant names to overlapped callbacks by Victor Stinner · 10 years ago
  36. f5e3703 asyncio: Fix pyflakes warnings: remove unused variables and imports by Victor Stinner · 10 years ago
  37. 24ba203 asyncio: Replace "unittest.mock" with "mock" in unit tests by Victor Stinner · 10 years ago
  38. a90e8ed asyncio: _check_resolved_address() must also accept IPv6 without flow_info and by Victor Stinner · 10 years ago
  39. 013dece asyncio: Fix _check_resolved_address() for IPv6 address by Victor Stinner · 10 years ago
  40. da492a8 asyncio: remove unused imports and unused variables noticed by pyflakes by Victor Stinner · 10 years ago
  41. 2c7203c asyncio: Fix _ProactorWritePipeTransport._pipe_closed() by Victor Stinner · 10 years ago
  42. cdb476b asyncio.subprocess: Fix a race condition in communicate() by Victor Stinner · 10 years ago
  43. 7ef60cd asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests. by Victor Stinner · 10 years ago
  44. 2d01c0a asyncio: WriteTransport.set_write_buffer_size to call _maybe_pause_protocol by Yury Selivanov · 10 years ago
  45. b41a42e asyncio: pep8-ify the code. by Yury Selivanov · 10 years ago
  46. b0b0e62 asyncio: Fix spelling and typos. by Yury Selivanov · 10 years ago
  47. 884e40b asyncio, Tulip issue 143: UNIX domain methods, fix ResourceWarning and by Victor Stinner · 10 years ago
  48. 065ca25 asyncio, Tulip issue 139: Improve error messages on "fatal errors" by Victor Stinner · 10 years ago
  49. c098241 asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin by Yury Selivanov · 10 years ago
  50. ff827f0 asyncio: New error handling API. Issue #20681. by Yury Selivanov · 10 years ago
  51. 59a5533 asyncio: Make tests pass on Windows. by Guido van Rossum · 10 years ago
  52. 88a5bf0 asyncio: Add support for UNIX Domain Sockets. by Yury Selivanov · 10 years ago
  53. 2877346 ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if by Victor Stinner · 10 years ago
  54. b58f053 asyncio: Change as_completed() to use a Queue, to avoid O(N**2) behavior. Fixes issue #20566. by Guido van Rossum · 10 years ago
  55. ee6dc42 asyncio.events: Use __slots__ in Handle and TimerHandle by Yury Selivanov · 10 years ago
  56. 2371e25 Issue #20505: Remove debug code by Victor Stinner · 10 years ago
  57. eb74876 asyncio, Tulip issue 131: as_completed() and wait() now raises a TypeError if by Victor Stinner · 10 years ago
  58. 4e8d2f2 asyncio, Tulip issue 130: Add more checks on subprocess_exec/subprocess_shell by Victor Stinner · 10 years ago
  59. a125497 asyncio, Tulip issue 126: call_soon(), call_soon_threadsafe(), call_later(), by Victor Stinner · 10 years ago
  60. 1db2ba3 Issue #20505: use also the monotonic time to decide if asyncio debug traces by Victor Stinner · 10 years ago
  61. 5d1ea04 Issue #20505: Oops, only print debug info if selector.select(timeout) took less by Victor Stinner · 10 years ago
  62. 7bff8e1 Issue #20505: Improve debug info in asyncio event loop by Victor Stinner · 10 years ago
  63. 06847d9 Issue #20505: Fix TestLoop, set the clock resolution by Victor Stinner · 10 years ago
  64. 6cf5c96 Issue #20505: BaseEventLoop uses again the resolution of the clock to decide if by Victor Stinner · 10 years ago
  65. 1c143b1 Issue #20505: Add debug info to analyze sporaric failures of by Victor Stinner · 10 years ago
  66. dc62b7e asyncio: Tulip issue 112: Inline make_handle() into Handle constructor by Victor Stinner · 10 years ago
  67. 09f08fe asyncio: Remove more relics of resolution/granularity. by Guido van Rossum · 10 years ago
  68. 0c3949c asyncio: Remove Process.subprocess attribute; it's too easy to get inconsistent by Victor Stinner · 10 years ago
  69. 85310a5 Issue #20505: Remove resolution and _granularity from selectors and asyncio by Victor Stinner · 10 years ago
  70. 3e7cc03 Issue #20505: add debug info by Victor Stinner · 10 years ago
  71. 622be34 asyncio.tasks: Fix as_completed, gather & wait to work with duplicate coroutines by Yury Selivanov · 10 years ago
  72. f317cb7 asyncio.tasks.gather: Fix docstring by Yury Selivanov · 10 years ago
  73. f0020f5 asyncio.streams.StreamReader: Add 'at_eof()' method by Yury Selivanov · 10 years ago
  74. e694c97 asyncio.streams: Use bytebuffer in StreamReader; Add assertion in feed_data by Yury Selivanov · 10 years ago
  75. 83bdfa0 asyncio: Fix _ProactorWritePipeTransport._pipe_closed() by Victor Stinner · 10 years ago
  76. b79eb05 asyncio.subprocess: Replace Process.get_subprocess() method with a by Victor Stinner · 10 years ago
  77. 915bcb0 Issue #20400: Merge Tulip into Python: add the new asyncio.subprocess module by Victor Stinner · 10 years ago
  78. 1506df2 Issue #20455: Add a resolution attribute to IocpProactor (1 ms) by Victor Stinner · 11 years ago
  79. f2e1768 Issue #20455: asyncio: use the same code to round a timeout than the selectors by Victor Stinner · 11 years ago
  80. b60e9ca Issue #20455: asyncio: write a new write pipe transport class for proactor (on by Victor Stinner · 11 years ago
  81. 61b3c9b asyncio: Fix _UnixWritePipeTransport, raise BrokenPipeError when the pipe is by Victor Stinner · 11 years ago
  82. 49d0f4e Issue #20452: Remove debug code, no more needed by Victor Stinner · 11 years ago
  83. 323748e asyncio: Fix error message in BaseEventLoop.subprocess_shell(). Patch written by Victor Stinner · 11 years ago
  84. dcd9740 Issue #20452: select and selectors round (again) timeout away from zero for by Victor Stinner · 11 years ago
  85. 31f6504 Issue #20452: Oops, fix debug code :-/ by Victor Stinner · 11 years ago
  86. 0278032 Issue #20452: add more info in case of test_asyncio failure to try to debug the by Victor Stinner · 11 years ago
  87. a849be9 asyncio: Fix misc whitespace issues. by Guido van Rossum · 11 years ago
  88. 1c16537 asyncio: Fix granularity of test_utils.TestLoop. by Victor Stinner · 11 years ago
  89. 9572898 asyncio: Future.set_exception(exc) should instantiate exc if it is a class. by Victor Stinner · 11 years ago
  90. e623a12 asyncio: subprocess_shell() and subprocess_exec() now raise ValueError instead of assert. by Victor Stinner · 11 years ago
  91. 73f10fd asyncio: Fix _make_subprocess_transport(): pass extra value to the constructor. by Victor Stinner · 11 years ago
  92. 48c66c3 asyncio: wait_for() now accepts None as timeout (Victor Stinner). by Guido van Rossum · 11 years ago
  93. 1e9a446 asyncio: Pass through pause/resume from subprocess pipe proto to subprocess proto. Also kill dummy eof_received(). by Guido van Rossum · 11 years ago
  94. 4d62d0b asyncio: Refactor drain logic in streams.py to be reusable. by Guido van Rossum · 11 years ago
  95. aaabc4f asyncio: Get rid of _try_connected(). by Victor Stinner · 11 years ago
  96. 47fb97e asyncio: Add write flow control to unix pipes. by Guido van Rossum · 11 years ago
  97. 3ccead1 asyncio: Refactoring: move write flow control to a subclass/mixin. by Guido van Rossum · 11 years ago
  98. 63b4d4b asyncio: _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport shouldn't log BrokenPipeError nor ConnectionResetError. by Victor Stinner · 11 years ago
  99. 7aedea4 asyncio: remove temporary aliases by Victor Stinner · 11 years ago
  100. 0742cae Merge latest Tulip into asyncio by Andrew Svetlov · 11 years ago