1. 1b9763d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  2. 3a1c738 Issue #23074: asyncio.get_event_loop() now raises an exception if the thread by Victor Stinner · 10 years ago
  3. 1e40f10 asyncio, tulip issue 209: Fix subprocess for close_fds=False on Python 3.3 by Victor Stinner · 10 years ago
  4. df75d5b asyncio, tulip issue 202: Add unit test of pause/resume writing for proactor by Victor Stinner · 10 years ago
  5. f3e2e09 Closes #22429, asyncio: Fix EventLoop.run_until_complete(), don't stop the by Victor Stinner · 10 years ago
  6. 4c85ec9 Issue #22922: Fix ProactorEventLoop.close() by Victor Stinner · 10 years ago
  7. e80bf0d Closes #22922: More EventLoop methods fail if the loop is closed. Initial patch by Victor Stinner · 10 years ago
  8. fe22e09 asyncio: Initialize more Future and Task attributes in the class definition to by Victor Stinner · 10 years ago
  9. d87de83 Closes #22475: asyncio doc, fix Task.get_stack() doc by Victor Stinner · 10 years ago
  10. 56a6d85 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  11. 5ef586f Closes #22685, asyncio: Set the transport of stdout and stderr StreamReader by Victor Stinner · 10 years ago
  12. 7243b57 don't require OpenSSL SNI to pass hostname to ssl functions (#22921) by Benjamin Peterson · 10 years ago
  13. 5e63120 asyncio: BaseSelectorEventLoop.close() now closes the self-pipe before calling by Victor Stinner · 10 years ago
  14. 2d99d93 asyncio: Coroutine objects are now rejected with a TypeError by the following 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. e36fcde - Issue #22841: Reject coroutines in asyncio add_signal_handler(). by Guido van Rossum · 10 years ago
  17. 004adb9 asyncio: Move loop attribute to _FlowControlMixin by Victor Stinner · 10 years ago
  18. 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
  19. f67f460 Issue #18643: asyncio.windows_utils now reuse socket.socketpair() on Windows if by Victor Stinner · 10 years ago
  20. 0e34dc3 asyncio: enhance protocol representation by Victor Stinner · 10 years ago
  21. c8bd53f Issue #22601: run_forever() now consumes BaseException of the temporary task by Victor Stinner · 10 years ago
  22. 68da8fc Issue #22448: asyncio, cleanup _run_once(), only iterate once to remove delayed by Victor Stinner · 10 years ago
  23. 592ada9 asyncio: Improve canceled timer handles cleanup. Closes issue #22448. by Yury Selivanov · 10 years ago
  24. 8c0e0ab asyncio.unix_events: Move import statement to match tulip code by Yury Selivanov · 10 years ago
  25. 8e069d5 Apply asyncio Task English fixes to docstrings as well. by R David Murray · 10 years ago
  26. 1b38bc6 asyncio, Tulip issue 206: In debug mode, keep the callback in the by Victor Stinner · 10 years ago
  27. 1486799 Issue #22369: Change "context manager protocol" to "context management protocol". by Serhiy Storchaka · 10 years ago
  28. d5aeccf9 asyncio, Tulip issue 205: Fix a race condition in BaseSelectorEventLoop.sock_connect() by Victor Stinner · 10 years ago
  29. 59e0802 asyncio, Tulip issue 201: Fix a race condition in wait_for() by Victor Stinner · 10 years ago
  30. 52bb949 asyncio, tulip issue 203: Add _FlowControlMixin.get_write_buffer_limits() method by Victor Stinner · 10 years ago
  31. b261475 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  32. 9c9f1f1 Close #22063: socket operations (socket,recv, sock_sendall, sock_connect, by Victor Stinner · 10 years ago
  33. f2ed889 asyncio: Use the new os.set_blocking() function of Python 3.5 if available by Victor Stinner · 10 years ago
  34. 313a980 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  35. 42d3bde asyncio, tulip issue 196: ProactorIocp._register() now registers the overlapped by Victor Stinner · 10 years ago
  36. f21fcd0 Accept optional lock object in Condition ctor (tulip issue #198) by Andrew Svetlov · 10 years ago
  37. 51e44ea Tulip issue 196: _OverlappedFuture.set_result() now clears its reference to the by Victor Stinner · 10 years ago
  38. 65dd69a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  39. 18a28dc asyncio: sync with Tulip by Victor Stinner · 10 years ago
  40. fea6a10 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  41. 5006b1f Issue #20055: Fix BaseEventLoop.stop() docstring, incomplete sentence. by Victor Stinner · 10 years ago
  42. c4c4649 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  43. 31e7bfa asyncio, tulip issue 193: Convert StreamWriter.drain() to a classic coroutine by Victor Stinner · 10 years ago
  44. be0a2d7 Fix asyncio.__all__: export also unix_events and windows_events symbols by Victor Stinner · 10 years ago
  45. fe5649c Python issue #21645, Tulip issue 192: Rewrite signal handling by Victor Stinner · 10 years ago
  46. d55b54d asyncio, tulip issue 190: Process.communicate() now ignores by Victor Stinner · 10 years ago
  47. cc996b5 asyncio, tulip issue 190: Process.communicate() must ignore BrokenPipeError by Victor Stinner · 10 years ago
  48. e931f7b Issue #21163: Fix "destroy pending task" warning in test_wait_errors() by Victor Stinner · 10 years ago
  49. f03b3c7 Issue #21163, asyncio: Ignore "destroy pending task" warnings for private tasks by Victor Stinner · 10 years ago
  50. 1cae9ec asyncio tests: make quiet the logs of SSL handshake failures when running tests by Victor Stinner · 10 years ago
  51. acdb782 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  52. e912e65 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  53. 8ebeb03 asyncio: improve the documentation of servers by Victor Stinner · 10 years ago
  54. b28dbac asyncio, Tulip issue 180: Make Server attributes and methods private by Victor Stinner · 10 years ago
  55. 770e48d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  56. 737c34f asyncio: sync with Tulip by Victor Stinner · 10 years ago
  57. c39ba7d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  58. f68bd88 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  59. bfff45d asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits by Victor Stinner · 10 years ago
  60. 896a25a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  61. 799a60c asyncio: sync with Tulip by Victor Stinner · 10 years ago
  62. 1a870c9 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  63. a9acbe8 Closes #21886, #21447: Fix a race condition in asyncio when setting the result by Victor Stinner · 10 years ago
  64. 2dba23a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  65. 98b6391 Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly() by Victor Stinner · 10 years ago
  66. b75380f asyncio: sync with Tulip by Victor Stinner · 10 years ago
  67. f951d28 asyncio: sync with Tulip, add a new asyncio.coroutines module by Victor Stinner · 10 years ago
  68. 80f53aa asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and by Victor Stinner · 10 years ago
  69. bbd96c6 asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutine by Victor Stinner · 10 years ago
  70. 17b53f1 asyncio: Handle error handler: enhance formatting of the callback by Victor Stinner · 10 years ago
  71. 975735f asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandle by Victor Stinner · 10 years ago
  72. df29c4a asyncio: repr(Task) now also contains the line number even if the coroutine is by Victor Stinner · 10 years ago
  73. a02f81f asyncio: Log an error if a Task is destroyed while it is still pending by Victor Stinner · 10 years ago
  74. 751c7c0 asyncio: Fix BaseEventLoop._assert_is_current_event_loop(): get_event_loop() by Victor Stinner · 10 years ago
  75. f328c7d asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the by Victor Stinner · 10 years ago
  76. 1580fe3 asyncio, Tulip issue 172: only log selector timing in debug mode by Victor Stinner · 10 years ago
  77. 7b7120e asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUG by Victor Stinner · 10 years ago
  78. d6de5d8 asyncio: BaseEventLoop._assert_is_current_event_loop() now only raises an by Victor Stinner · 10 years ago
  79. 0e6f52a asyncio, Tulip issue 105: in debug mode, log callbacks taking more than 100 ms by Victor Stinner · 10 years ago
  80. d143209 Tulip issue 83: document more asyncio functions in docstrings by Victor Stinner · 10 years ago
  81. 54c4b8e Closes #21595: asyncio.BaseSelectorEventLoop._read_from_self() now reads all by Victor Stinner · 10 years ago
  82. c73701d asyncio: Refactor tests: add a base TestCase class by Victor Stinner · 10 years ago
  83. 8d3e02e asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator on by Victor Stinner · 10 years ago
  84. 66dc6b0 Issue #21723: asyncio.Queue: support any type of number (ex: float) for the by Victor Stinner · 10 years ago
  85. bc434e2 asyncio: Task.__repr__() now also handles CoroWrapper by Victor Stinner · 10 years ago
  86. 307bccc asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task) by Victor Stinner · 10 years ago
  87. db74d98 Issue #21596: asyncio.wait(): mention that the sequence of futures must not by Victor Stinner · 10 years ago
  88. bb2fc5b Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop by Victor Stinner · 10 years ago
  89. f9e49dd Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncio by Victor Stinner · 10 years ago
  90. a9fa266 Issue #21119: asyncio: Make sure that socketpair() close sockets on error by Victor Stinner · 10 years ago
  91. 223a624 Issue #21119: asyncio now closes sockets on errors by Victor Stinner · 10 years ago
  92. 8d21357 Issue #21601: Document asyncio.Task.cancel(). Initial patch written by Vajrasky by Victor Stinner · 10 years ago
  93. a5b257a Issue #21454: Fix asyncio.BaseEventLoop.connect_read_pipe doc by Victor Stinner · 10 years ago
  94. 3207a03 Fix for raising exception not derived from BaseException in _SelectorSslTransport.resume_reading by Andrew Svetlov · 10 years ago
  95. 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
  96. 3d1bc60 asyncio: Upstream issue #167: remove dead code, by Marc Schlaich. by Guido van Rossum · 10 years ago
  97. 3d139d8 asyncio: Fix the second half of issue #21447: race in _write_to_self(). by Guido van Rossum · 10 years ago
  98. 94ba146 asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166. by Guido van Rossum · 10 years ago
  99. 83c1ddd asyncio: Be careful accessing instance variables in __del__ (closes #21340). by Guido van Rossum · 10 years ago
  100. 0cbc768 asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163). by Guido van Rossum · 10 years ago