1. 1241ecc Issue #23347, asyncio: Make BaseSubprocessTransport.wait() private by Victor Stinner · 9 years ago
  2. 47cd10d asyncio: sync with Tulip by Victor Stinner · 9 years ago
  3. 978a9af Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transport by Victor Stinner · 9 years ago
  4. 2934262 asyncio: sync with Tulip by Victor Stinner · 9 years ago
  5. f07801b asyncio: SSL transports now clear their reference to the waiter by Victor Stinner · 9 years ago
  6. 4bf22e0 asyncio: Close the transport on subprocess creation failure by Victor Stinner · 9 years ago
  7. 41ed958 Issue #23243: Fix asyncio._UnixWritePipeTransport.close() by Victor Stinner · 9 years ago
  8. 29ad011 asyncio: sync with Tulip by Victor Stinner · 9 years ago
  9. 70db9e4 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  10. 15cc678 asyncio: Truncate to 80 columns by Victor Stinner · 10 years ago
  11. 1e40f10 asyncio, tulip issue 209: Fix subprocess for close_fds=False on Python 3.3 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. 2d99d93 asyncio: Coroutine objects are now rejected with a TypeError by the following by Victor Stinner · 10 years ago
  14. e36fcde - Issue #22841: Reject coroutines in asyncio add_signal_handler(). by Guido van Rossum · 10 years ago
  15. 004adb9 asyncio: Move loop attribute to _FlowControlMixin by Victor Stinner · 10 years ago
  16. 8c0e0ab asyncio.unix_events: Move import statement to match tulip code by Yury Selivanov · 10 years ago
  17. b261475 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  18. f2ed889 asyncio: Use the new os.set_blocking() function of Python 3.5 if available by Victor Stinner · 10 years ago
  19. c4c4649 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  20. fe5649c Python issue #21645, Tulip issue 192: Rewrite signal handling by Victor Stinner · 10 years ago
  21. acdb782 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  22. e912e65 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  23. bfff45d asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits by Victor Stinner · 10 years ago
  24. a9acbe8 Closes #21886, #21447: Fix a race condition in asyncio when setting the result by Victor Stinner · 10 years ago
  25. 2dba23a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  26. f951d28 asyncio: sync with Tulip, add a new asyncio.coroutines module by Victor Stinner · 10 years ago
  27. f328c7d asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the by Victor Stinner · 10 years ago
  28. f9e49dd Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncio by Victor Stinner · 10 years ago
  29. 223a624 Issue #21119: asyncio now closes sockets on errors by Victor Stinner · 10 years ago
  30. 1fd03a4 Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError if by Victor Stinner · 10 years ago
  31. b4c9388 asyncio: remove unused imports and unused variables noticed by pyflakes by Victor Stinner · 10 years ago
  32. dec1a45 asyncio: Fix spelling and typos. by Yury Selivanov · 10 years ago
  33. 79a2952 asyncio, Tulip issue 143: UNIX domain methods, fix ResourceWarning and by Victor Stinner · 10 years ago
  34. 0ee29c2 asyncio, Tulip issue 139: Improve error messages on "fatal errors" by Victor Stinner · 10 years ago
  35. 3cb9914 asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin by Yury Selivanov · 10 years ago
  36. 569efa2 asyncio: New error handling API. Issue #20681. by Yury Selivanov · 10 years ago
  37. b057c52 asyncio: Add support for UNIX Domain Sockets. by Yury Selivanov · 10 years ago
  38. dc62b7e asyncio: Tulip issue 112: Inline make_handle() into Handle constructor by Victor Stinner · 10 years ago
  39. 915bcb0 Issue #20400: Merge Tulip into Python: add the new asyncio.subprocess module by Victor Stinner · 10 years ago
  40. 61b3c9b asyncio: Fix _UnixWritePipeTransport, raise BrokenPipeError when the pipe is by Victor Stinner · 10 years ago
  41. 73f10fd asyncio: Fix _make_subprocess_transport(): pass extra value to the constructor. by Victor Stinner · 10 years ago
  42. 47fb97e asyncio: Add write flow control to unix pipes. by Guido van Rossum · 10 years ago
  43. 63b4d4b asyncio: _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport shouldn't log BrokenPipeError nor ConnectionResetError. by Victor Stinner · 10 years ago
  44. 0742cae Merge latest Tulip into asyncio by Andrew Svetlov · 10 years ago
  45. ab27a9f asyncio: Fix race in FastChildWatcher (by its original author, Anthony Baire). by Guido van Rossum · 10 years ago
  46. 8dffc45 Update asyncio from the Tulip project by Victor Stinner · 10 years ago
  47. 02757ea asyncio: Minimal pty support in UNIX read pipe, by Jonathan Slenders. by Guido van Rossum · 11 years ago
  48. 4835f17 asyncio: Fix race in subprocess transport, by Victor Stinner. by Guido van Rossum · 11 years ago
  49. 74e7cf3 Issue #19850: asyncio: Set SA_RESTART when registering a signal handler to by Charles-François Natali · 11 years ago
  50. 2bcae70 asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix). by Guido van Rossum · 11 years ago
  51. 82e9f32 asyncio: Temporary fix by Victor Stinner for issue 19566. by Guido van Rossum · 11 years ago
  52. 0b69fbc asyncio: Add close() back to Unix selector event loop, to remove all signal handlers. Should fix buildbot issues. by Guido van Rossum · 11 years ago
  53. 0eaa5ac asyncio: Refactor SIGCHLD handling. By Anthony Baire. by Guido van Rossum · 11 years ago
  54. 5969128 asyncio: Add support for running subprocesses on Windows with the IOCP event loop (Richard Oudkerk). by Guido van Rossum · 11 years ago
  55. 934f6ea Switch subprocess stdin to a socketpair, attempting to fix issue #19293 (AIX hang). by Guido van Rossum · 11 years ago
  56. 8da15cc asyncio: be more lenient if we don't understand status returned by waitpid(). by Guido van Rossum · 11 years ago
  57. 5121deb Issue #19310: asyncio: fix child processes reaping logic. by Charles-François Natali · 11 years ago
  58. bcd7682 Issue #19309: asyncio: make waitpid() wait for all child processes, not only by Charles-François Natali · 11 years ago
  59. 57497ad Rename Transport.pause/resume to pause_reading/pause_writing. Also relax timeout in test_call_later(). by Guido van Rossum · 11 years ago
  60. fc29e0f Rename the logger to plain "logger". by Guido van Rossum · 11 years ago
  61. 27b7c7e Initial checkin of asyncio package (== Tulip, == PEP 3156). by Guido van Rossum · 11 years ago