1. 0e34dc3 asyncio: enhance protocol representation by Victor Stinner · 10 years ago
  2. c8bd53f Issue #22601: run_forever() now consumes BaseException of the temporary task by Victor Stinner · 10 years ago
  3. 68da8fc Issue #22448: asyncio, cleanup _run_once(), only iterate once to remove delayed by Victor Stinner · 10 years ago
  4. 592ada9 asyncio: Improve canceled timer handles cleanup. Closes issue #22448. by Yury Selivanov · 10 years ago
  5. 8c0e0ab asyncio.unix_events: Move import statement to match tulip code by Yury Selivanov · 10 years ago
  6. 8e069d5 Apply asyncio Task English fixes to docstrings as well. by R David Murray · 10 years ago
  7. 1b38bc6 asyncio, Tulip issue 206: In debug mode, keep the callback in the by Victor Stinner · 10 years ago
  8. 1486799 Issue #22369: Change "context manager protocol" to "context management protocol". by Serhiy Storchaka · 10 years ago
  9. d5aeccf9 asyncio, Tulip issue 205: Fix a race condition in BaseSelectorEventLoop.sock_connect() by Victor Stinner · 10 years ago
  10. 59e0802 asyncio, Tulip issue 201: Fix a race condition in wait_for() by Victor Stinner · 10 years ago
  11. 52bb949 asyncio, tulip issue 203: Add _FlowControlMixin.get_write_buffer_limits() method by Victor Stinner · 10 years ago
  12. b261475 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  13. 9c9f1f1 Close #22063: socket operations (socket,recv, sock_sendall, sock_connect, by Victor Stinner · 10 years ago
  14. f2ed889 asyncio: Use the new os.set_blocking() function of Python 3.5 if available by Victor Stinner · 10 years ago
  15. 313a980 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  16. 42d3bde asyncio, tulip issue 196: ProactorIocp._register() now registers the overlapped by Victor Stinner · 10 years ago
  17. f21fcd0 Accept optional lock object in Condition ctor (tulip issue #198) by Andrew Svetlov · 10 years ago
  18. 51e44ea Tulip issue 196: _OverlappedFuture.set_result() now clears its reference to the by Victor Stinner · 10 years ago
  19. 65dd69a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  20. 18a28dc asyncio: sync with Tulip by Victor Stinner · 10 years ago
  21. fea6a10 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  22. 5006b1f Issue #20055: Fix BaseEventLoop.stop() docstring, incomplete sentence. by Victor Stinner · 10 years ago
  23. c4c4649 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  24. 31e7bfa asyncio, tulip issue 193: Convert StreamWriter.drain() to a classic coroutine by Victor Stinner · 10 years ago
  25. be0a2d7 Fix asyncio.__all__: export also unix_events and windows_events symbols by Victor Stinner · 10 years ago
  26. fe5649c Python issue #21645, Tulip issue 192: Rewrite signal handling by Victor Stinner · 10 years ago
  27. d55b54d asyncio, tulip issue 190: Process.communicate() now ignores by Victor Stinner · 10 years ago
  28. cc996b5 asyncio, tulip issue 190: Process.communicate() must ignore BrokenPipeError by Victor Stinner · 10 years ago
  29. e931f7b Issue #21163: Fix "destroy pending task" warning in test_wait_errors() by Victor Stinner · 10 years ago
  30. f03b3c7 Issue #21163, asyncio: Ignore "destroy pending task" warnings for private tasks by Victor Stinner · 10 years ago
  31. 1cae9ec asyncio tests: make quiet the logs of SSL handshake failures when running tests by Victor Stinner · 10 years ago
  32. acdb782 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  33. e912e65 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  34. 8ebeb03 asyncio: improve the documentation of servers by Victor Stinner · 10 years ago
  35. b28dbac asyncio, Tulip issue 180: Make Server attributes and methods private by Victor Stinner · 10 years ago
  36. 770e48d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  37. 737c34f asyncio: sync with Tulip by Victor Stinner · 10 years ago
  38. c39ba7d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  39. f68bd88 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  40. bfff45d asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits by Victor Stinner · 10 years ago
  41. 896a25a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  42. 799a60c asyncio: sync with Tulip by Victor Stinner · 10 years ago
  43. 1a870c9 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  44. a9acbe8 Closes #21886, #21447: Fix a race condition in asyncio when setting the result by Victor Stinner · 10 years ago
  45. 2dba23a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  46. 98b6391 Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly() by Victor Stinner · 10 years ago
  47. b75380f asyncio: sync with Tulip by Victor Stinner · 10 years ago
  48. f951d28 asyncio: sync with Tulip, add a new asyncio.coroutines module by Victor Stinner · 10 years ago
  49. 80f53aa asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and by Victor Stinner · 10 years ago
  50. bbd96c6 asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutine by Victor Stinner · 10 years ago
  51. 17b53f1 asyncio: Handle error handler: enhance formatting of the callback by Victor Stinner · 10 years ago
  52. 975735f asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandle by Victor Stinner · 10 years ago
  53. df29c4a asyncio: repr(Task) now also contains the line number even if the coroutine is by Victor Stinner · 10 years ago
  54. a02f81f asyncio: Log an error if a Task is destroyed while it is still pending by Victor Stinner · 10 years ago
  55. 751c7c0 asyncio: Fix BaseEventLoop._assert_is_current_event_loop(): get_event_loop() by Victor Stinner · 10 years ago
  56. f328c7d asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the by Victor Stinner · 10 years ago
  57. 1580fe3 asyncio, Tulip issue 172: only log selector timing in debug mode by Victor Stinner · 10 years ago
  58. 7b7120e asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUG by Victor Stinner · 10 years ago
  59. d6de5d8 asyncio: BaseEventLoop._assert_is_current_event_loop() now only raises an by Victor Stinner · 10 years ago
  60. 0e6f52a asyncio, Tulip issue 105: in debug mode, log callbacks taking more than 100 ms by Victor Stinner · 10 years ago
  61. d143209 Tulip issue 83: document more asyncio functions in docstrings by Victor Stinner · 10 years ago
  62. 54c4b8e Closes #21595: asyncio.BaseSelectorEventLoop._read_from_self() now reads all by Victor Stinner · 10 years ago
  63. c73701d asyncio: Refactor tests: add a base TestCase class by Victor Stinner · 10 years ago
  64. 8d3e02e asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator on by Victor Stinner · 10 years ago
  65. 66dc6b0 Issue #21723: asyncio.Queue: support any type of number (ex: float) for the by Victor Stinner · 10 years ago
  66. bc434e2 asyncio: Task.__repr__() now also handles CoroWrapper by Victor Stinner · 10 years ago
  67. 307bccc asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task) by Victor Stinner · 10 years ago
  68. db74d98 Issue #21596: asyncio.wait(): mention that the sequence of futures must not by Victor Stinner · 10 years ago
  69. bb2fc5b Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop by Victor Stinner · 10 years ago
  70. f9e49dd Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncio by Victor Stinner · 10 years ago
  71. a9fa266 Issue #21119: asyncio: Make sure that socketpair() close sockets on error by Victor Stinner · 10 years ago
  72. 223a624 Issue #21119: asyncio now closes sockets on errors by Victor Stinner · 10 years ago
  73. 8d21357 Issue #21601: Document asyncio.Task.cancel(). Initial patch written by Vajrasky by Victor Stinner · 10 years ago
  74. a5b257a Issue #21454: Fix asyncio.BaseEventLoop.connect_read_pipe doc by Victor Stinner · 10 years ago
  75. 3207a03 Fix for raising exception not derived from BaseException in _SelectorSslTransport.resume_reading by Andrew Svetlov · 10 years ago
  76. 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
  77. 3d1bc60 asyncio: Upstream issue #167: remove dead code, by Marc Schlaich. by Guido van Rossum · 10 years ago
  78. 3d139d8 asyncio: Fix the second half of issue #21447: race in _write_to_self(). by Guido van Rossum · 10 years ago
  79. 94ba146 asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166. by Guido van Rossum · 10 years ago
  80. 83c1ddd asyncio: Be careful accessing instance variables in __del__ (closes #21340). by Guido van Rossum · 10 years ago
  81. 0cbc768 asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163). by Guido van Rossum · 10 years ago
  82. 09cc169 asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctly by Yury Selivanov · 10 years ago
  83. f15f748 asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1 by Yury Selivanov · 10 years ago
  84. 1fd03a4 Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError if by Victor Stinner · 10 years ago
  85. 4bd652a asyncio: Document Task.cancel() properly. by Victor Stinner · 10 years ago
  86. 93569c2 asyncio: Ensure call_soon(), call_later() and call_at() are invoked on current by Victor Stinner · 10 years ago
  87. e6a5379 asyncio, Tulip issue 157: Improve test_events.py, avoid run_briefly() which is by Victor Stinner · 10 years ago
  88. eeeebcd asyncio: Synchronize with Tulip by Victor Stinner · 10 years ago
  89. d74ac82 asyncio, Tulip issue 158: Task._step() now also sets self to None if an by Victor Stinner · 10 years ago
  90. c89c8a7 asyncio/windows_events.py: use more revelant names to overlapped callbacks by Victor Stinner · 10 years ago
  91. f5e3703 asyncio: Fix pyflakes warnings: remove unused variables and imports by Victor Stinner · 10 years ago
  92. 24ba203 asyncio: Replace "unittest.mock" with "mock" in unit tests by Victor Stinner · 10 years ago
  93. a90e8ed asyncio: _check_resolved_address() must also accept IPv6 without flow_info and by Victor Stinner · 10 years ago
  94. 013dece asyncio: Fix _check_resolved_address() for IPv6 address by Victor Stinner · 10 years ago
  95. da492a8 asyncio: remove unused imports and unused variables noticed by pyflakes by Victor Stinner · 10 years ago
  96. 2c7203c asyncio: Fix _ProactorWritePipeTransport._pipe_closed() by Victor Stinner · 10 years ago
  97. cdb476b asyncio.subprocess: Fix a race condition in communicate() by Victor Stinner · 10 years ago
  98. 7ef60cd asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests. by Victor Stinner · 10 years ago
  99. 2d01c0a asyncio: WriteTransport.set_write_buffer_size to call _maybe_pause_protocol by Yury Selivanov · 10 years ago
  100. b41a42e asyncio: pep8-ify the code. by Yury Selivanov · 10 years ago