1. 61b3c9b asyncio: Fix _UnixWritePipeTransport, raise BrokenPipeError when the pipe is by Victor Stinner · 11 years ago
  2. 49d0f4e Issue #20452: Remove debug code, no more needed by Victor Stinner · 11 years ago
  3. 323748e asyncio: Fix error message in BaseEventLoop.subprocess_shell(). Patch written by Victor Stinner · 11 years ago
  4. dcd9740 Issue #20452: select and selectors round (again) timeout away from zero for by Victor Stinner · 11 years ago
  5. 31f6504 Issue #20452: Oops, fix debug code :-/ by Victor Stinner · 11 years ago
  6. 0278032 Issue #20452: add more info in case of test_asyncio failure to try to debug the by Victor Stinner · 11 years ago
  7. a849be9 asyncio: Fix misc whitespace issues. by Guido van Rossum · 11 years ago
  8. 1c16537 asyncio: Fix granularity of test_utils.TestLoop. by Victor Stinner · 11 years ago
  9. 9572898 asyncio: Future.set_exception(exc) should instantiate exc if it is a class. by Victor Stinner · 11 years ago
  10. e623a12 asyncio: subprocess_shell() and subprocess_exec() now raise ValueError instead of assert. by Victor Stinner · 11 years ago
  11. 73f10fd asyncio: Fix _make_subprocess_transport(): pass extra value to the constructor. by Victor Stinner · 11 years ago
  12. 48c66c3 asyncio: wait_for() now accepts None as timeout (Victor Stinner). by Guido van Rossum · 11 years ago
  13. 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
  14. 4d62d0b asyncio: Refactor drain logic in streams.py to be reusable. by Guido van Rossum · 11 years ago
  15. aaabc4f asyncio: Get rid of _try_connected(). by Victor Stinner · 11 years ago
  16. 47fb97e asyncio: Add write flow control to unix pipes. by Guido van Rossum · 11 years ago
  17. 3ccead1 asyncio: Refactoring: move write flow control to a subclass/mixin. by Guido van Rossum · 11 years ago
  18. 63b4d4b asyncio: _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport shouldn't log BrokenPipeError nor ConnectionResetError. by Victor Stinner · 11 years ago
  19. 7aedea4 asyncio: remove temporary aliases by Victor Stinner · 11 years ago
  20. 0742cae Merge latest Tulip into asyncio by Andrew Svetlov · 11 years ago
  21. fef7098 asyncio: Rename {Empty,Full} to {QueueEmpty,QueueFull} and no longer get them from queue.py. by Guido van Rossum · 11 years ago
  22. ab3c889 asyncio: Locks refactor: use a separate context manager; remove Semaphore._locked. by Guido van Rossum · 11 years ago
  23. ab27a9f asyncio: Fix race in FastChildWatcher (by its original author, Anthony Baire). by Guido van Rossum · 11 years ago
  24. 669eeaf Merge latest Tulip into asyncio by Victor Stinner · 11 years ago
  25. 128ee22 asyncio: Don't export BaseEventLoop, BaseSelectorEventLoop nor by Victor Stinner · 11 years ago
  26. 8dffc45 Update asyncio from the Tulip project by Victor Stinner · 11 years ago
  27. 75a5ec8 Fix asyncio tests: define resolution by Victor Stinner · 11 years ago
  28. f67255a Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximum by Victor Stinner · 11 years ago
  29. 421e49b asyncio: wait_for() now cancels the future on timeout. Patch written by Gustavo by Victor Stinner · 11 years ago
  30. 183e347 asyncio (Tulip issue 110): StreamReader.read() and StreamReader.readline() now by Victor Stinner · 11 years ago
  31. 3eb45d3 asyncio: Fix open_connection() documentation, writer is a StreamWriter by Victor Stinner · 11 years ago
  32. 4a2dbeb asyncio: Cleanup logging in BaseEventLoop._run_once() by Victor Stinner · 11 years ago
  33. 22463aa Close #20275: Optimize BaseEventLoop._run_once() by Victor Stinner · 11 years ago
  34. e1f5544 asyncio: Reincarnate CoroWrapper's docstring as a comment. by Guido van Rossum · 11 years ago
  35. bac7793 asyncio: Fix CoroWrapper (fix my previous commit) by Victor Stinner · 11 years ago
  36. 4d7a29c asyncio: Fix a typo in CoroWrapper by Victor Stinner · 11 years ago
  37. 7de2646 Cleanup properly proactor event loop by Victor Stinner · 11 years ago
  38. 02757ea asyncio: Minimal pty support in UNIX read pipe, by Jonathan Slenders. by Guido van Rossum · 11 years ago
  39. 4835f17 asyncio: Fix race in subprocess transport, by Victor Stinner. by Guido van Rossum · 11 years ago
  40. efef9d3 asyncio: Tiny cleanup in streams.py. by Guido van Rossum · 11 years ago
  41. 2407f3b asyncio: Don't special-case GeneratorExit in Condition.wait(). by Guido van Rossum · 11 years ago
  42. 6188bd4 Fix typo in asyncio/streams.py. by Guido van Rossum · 11 years ago
  43. 3845521 asyncio: Fix deadlock in readexactly(). Fixes issue #20154. by Guido van Rossum · 11 years ago
  44. 6f055e7 asyncio: make PY34 symbol private (rename it to _PY34) by Victor Stinner · 11 years ago
  45. 68816ef Export asyncio.iscoroutine[function]. by Guido van Rossum · 11 years ago
  46. 68600c7 asyncio: Fix space in log message about poll time. by Guido van Rossum · 11 years ago
  47. e40c078 Issue #19967: Defer the formating of the traceback in asyncio.Future destructor by Victor Stinner · 11 years ago
  48. ac97bf4 asyncio: Export all abstract protocol and transport classes. Fixes issue #20029. by Guido van Rossum · 11 years ago
  49. 9ba75db asyncio: Clean up formatting. by Guido van Rossum · 11 years ago
  50. 4c3c699 Close #19967: Thanks to the PEP 442, asyncio.Future can use a destructor in by Victor Stinner · 11 years ago
  51. 994bf43 Shorten lines. by Guido van Rossum · 11 years ago
  52. 2748bc7 asyncio: remove references to the Tulip project, rename Tulip to asyncio. by Victor Stinner · 11 years ago
  53. 782b8e4 Remove a duplicated import by Victor Stinner · 11 years ago
  54. 1a605ed asyncio: Add Task.current_task() class method. by Guido van Rossum · 11 years ago
  55. c9a87e6 fix cert names for asyncio test by Christian Heimes · 11 years ago
  56. 6d8c1ab Issue #19509: Finish implementation of check_hostname by Christian Heimes · 11 years ago
  57. 74e7cf3 Issue #19850: asyncio: Set SA_RESTART when registering a signal handler to by Charles-François Natali · 11 years ago
  58. ebb8e58 asyncio: Write flow control for proactor event loop. by Guido van Rossum · 11 years ago
  59. cf6f72e Fix typo in asyncio.AbstractServer documentation by Victor Stinner · 11 years ago
  60. f10345e asyncio: Improve default writelines(). by Guido van Rossum · 11 years ago
  61. 10a8e6a asyncio: replace our with asynchronous in docstring by Victor Stinner · 11 years ago
  62. c37dd61 asyncio: document locks by Victor Stinner · 11 years ago
  63. b3330a0a Issue #19842: Refactor BaseSelector to make it an actual usable ABC. by Charles-François Natali · 11 years ago
  64. 9204af4 asyncio: Use Interface instead of ABC. Fixes issue 19726. by Guido van Rossum · 11 years ago
  65. de3a136 asyncio: Add 'shield' to __all__. by Guido van Rossum · 11 years ago
  66. a5062c5 asyncio: Change write buffer use to avoid O(N**2). Make write()/sendto() accept bytearray/memoryview too. Change some asserts with proper exceptions. by Guido van Rossum · 11 years ago
  67. cced076 asyncio: Fix get_event_loop() to call set_event_loop() when setting the loop. By Anthony Baire. by Guido van Rossum · 11 years ago
  68. 49c96fb asyncio: Add StreamReaderProtocol to __all__. by Guido van Rossum · 11 years ago
  69. 16c4239 asyncio: Fix docstring of get_nowait(). by Guido van Rossum · 11 years ago
  70. a58d1c3 asyncio: Add BoundedSemaphore to export list in locks.__all__. by Guido van Rossum · 11 years ago
  71. 71196e7 Issue #19740: Use WaitForSingleObject() instead of trusting TimerOrWaitFired. by Richard Oudkerk · 11 years ago
  72. 7fa6e1a Keep asyncio working with Python 3.3 too. by Guido van Rossum · 11 years ago
  73. 085869b asyncio: Change bounded semaphore into a subclass, like threading.[Bounded]Semaphore. by Guido van Rossum · 11 years ago
  74. 67986f9 Issue #19735: Implement private function ssl._create_stdlib_context() to by Christian Heimes · 11 years ago
  75. 488b0da Fix typo. by Guido van Rossum · 11 years ago
  76. dec4338 Fix transport docstrings by Antoine Pitrou · 11 years ago
  77. 7a46564 asyncio: Pass cancellation from wrapping Future to wrapped Future. By Saúl Ibarra Corretgé (mostly). by Guido van Rossum · 11 years ago
  78. 9c55a58 asyncio: Make Semaphore(0) work properly. by Guido van Rossum · 11 years ago
  79. 1540b16 asyncio: Add streams.start_server(), by Gustavo Carneiro. by Guido van Rossum · 11 years ago
  80. 2335de7 asyncio: Replace connection_refused() with error_received(). by Guido van Rossum · 11 years ago
  81. 2bcae70 asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix). by Guido van Rossum · 11 years ago
  82. 82e9f32 asyncio: Temporary fix by Victor Stinner for issue 19566. by Guido van Rossum · 11 years ago
  83. 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
  84. 0eaa5ac asyncio: Refactor SIGCHLD handling. By Anthony Baire. by Guido van Rossum · 11 years ago
  85. ccea084 asyncio: Locks improvements by Arnaud Faure: better repr(), change Conditio\ by Guido van Rossum · 11 years ago
  86. 28dff0d asyncio: Better-looking errors when ssl module cannot be imported. In part by Arnaud Faure. by Guido van Rossum · 11 years ago
  87. a8d630a asyncio: Various style nits. by Guido van Rossum · 11 years ago
  88. 3a70392 asyncio: Log a warning when eof_received() returns true and using ssl. by Guido van Rossum · 11 years ago
  89. e3f52ef asyncio: Document EventLoop.close(). by Guido van Rossum · 11 years ago
  90. 2b57016 asyncio: Refactor ssl transport ready loop (Nikolay Kim). by Guido van Rossum · 11 years ago
  91. 21c85a7 asyncio: Add server_hostname as create_connection() argument, with secure default. by Guido van Rossum · 11 years ago
  92. 2b430b8 asyncio: Fold some long lines. by Guido van Rossum · 11 years ago
  93. 3317a13 asyncio: Pause accepting whenever accept() returns certain errors. Fixes asyncio issue #78. by Guido van Rossum · 11 years ago
  94. 0016e1d asyncio: Add new file (forgotten). by Guido van Rossum · 11 years ago
  95. 5969128 asyncio: Add support for running subprocesses on Windows with the IOCP event loop (Richard Oudkerk). by Guido van Rossum · 11 years ago
  96. 90fb914 asyncio: Make the IOCP proactor support "waitable" handles (Richard Oudkerk). by Guido van Rossum · 11 years ago
  97. ec7922c asyncio: Update some comments. by Guido van Rossum · 11 years ago
  98. 1f683bb asyncio: When not closing the connection after receiving EOF, still remove the read handler. by Guido van Rossum · 11 years ago
  99. 934f6ea Switch subprocess stdin to a socketpair, attempting to fix issue #19293 (AIX hang). by Guido van Rossum · 11 years ago
  100. 8da15cc asyncio: be more lenient if we don't understand status returned by waitpid(). by Guido van Rossum · 11 years ago