1. e40c078 Issue #19967: Defer the formating of the traceback in asyncio.Future destructor by Victor Stinner · 11 years ago
  2. ac97bf4 asyncio: Export all abstract protocol and transport classes. Fixes issue #20029. by Guido van Rossum · 11 years ago
  3. 9ba75db asyncio: Clean up formatting. by Guido van Rossum · 11 years ago
  4. 4c3c699 Close #19967: Thanks to the PEP 442, asyncio.Future can use a destructor in by Victor Stinner · 11 years ago
  5. 994bf43 Shorten lines. by Guido van Rossum · 11 years ago
  6. 2748bc7 asyncio: remove references to the Tulip project, rename Tulip to asyncio. by Victor Stinner · 11 years ago
  7. 782b8e4 Remove a duplicated import by Victor Stinner · 11 years ago
  8. 1a605ed asyncio: Add Task.current_task() class method. by Guido van Rossum · 11 years ago
  9. c9a87e6 fix cert names for asyncio test by Christian Heimes · 11 years ago
  10. 6d8c1ab Issue #19509: Finish implementation of check_hostname by Christian Heimes · 11 years ago
  11. 74e7cf3 Issue #19850: asyncio: Set SA_RESTART when registering a signal handler to by Charles-François Natali · 11 years ago
  12. ebb8e58 asyncio: Write flow control for proactor event loop. by Guido van Rossum · 11 years ago
  13. cf6f72e Fix typo in asyncio.AbstractServer documentation by Victor Stinner · 11 years ago
  14. f10345e asyncio: Improve default writelines(). by Guido van Rossum · 11 years ago
  15. 10a8e6a asyncio: replace our with asynchronous in docstring by Victor Stinner · 11 years ago
  16. c37dd61 asyncio: document locks by Victor Stinner · 11 years ago
  17. b3330a0a Issue #19842: Refactor BaseSelector to make it an actual usable ABC. by Charles-François Natali · 11 years ago
  18. 9204af4 asyncio: Use Interface instead of ABC. Fixes issue 19726. by Guido van Rossum · 11 years ago
  19. de3a136 asyncio: Add 'shield' to __all__. by Guido van Rossum · 11 years ago
  20. 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
  21. 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
  22. 49c96fb asyncio: Add StreamReaderProtocol to __all__. by Guido van Rossum · 11 years ago
  23. 16c4239 asyncio: Fix docstring of get_nowait(). by Guido van Rossum · 11 years ago
  24. a58d1c3 asyncio: Add BoundedSemaphore to export list in locks.__all__. by Guido van Rossum · 11 years ago
  25. 71196e7 Issue #19740: Use WaitForSingleObject() instead of trusting TimerOrWaitFired. by Richard Oudkerk · 11 years ago
  26. 7fa6e1a Keep asyncio working with Python 3.3 too. by Guido van Rossum · 11 years ago
  27. 085869b asyncio: Change bounded semaphore into a subclass, like threading.[Bounded]Semaphore. by Guido van Rossum · 11 years ago
  28. 67986f9 Issue #19735: Implement private function ssl._create_stdlib_context() to by Christian Heimes · 11 years ago
  29. 488b0da Fix typo. by Guido van Rossum · 11 years ago
  30. dec4338 Fix transport docstrings by Antoine Pitrou · 11 years ago
  31. 7a46564 asyncio: Pass cancellation from wrapping Future to wrapped Future. By Saúl Ibarra Corretgé (mostly). by Guido van Rossum · 11 years ago
  32. 9c55a58 asyncio: Make Semaphore(0) work properly. by Guido van Rossum · 11 years ago
  33. 1540b16 asyncio: Add streams.start_server(), by Gustavo Carneiro. by Guido van Rossum · 11 years ago
  34. 2335de7 asyncio: Replace connection_refused() with error_received(). by Guido van Rossum · 11 years ago
  35. 2bcae70 asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix). by Guido van Rossum · 11 years ago
  36. 82e9f32 asyncio: Temporary fix by Victor Stinner for issue 19566. by Guido van Rossum · 11 years ago
  37. 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
  38. 0eaa5ac asyncio: Refactor SIGCHLD handling. By Anthony Baire. by Guido van Rossum · 11 years ago
  39. ccea084 asyncio: Locks improvements by Arnaud Faure: better repr(), change Conditio\ by Guido van Rossum · 11 years ago
  40. 28dff0d asyncio: Better-looking errors when ssl module cannot be imported. In part by Arnaud Faure. by Guido van Rossum · 11 years ago
  41. a8d630a asyncio: Various style nits. by Guido van Rossum · 11 years ago
  42. 3a70392 asyncio: Log a warning when eof_received() returns true and using ssl. by Guido van Rossum · 11 years ago
  43. e3f52ef asyncio: Document EventLoop.close(). by Guido van Rossum · 11 years ago
  44. 2b57016 asyncio: Refactor ssl transport ready loop (Nikolay Kim). by Guido van Rossum · 11 years ago
  45. 21c85a7 asyncio: Add server_hostname as create_connection() argument, with secure default. by Guido van Rossum · 11 years ago
  46. 2b430b8 asyncio: Fold some long lines. by Guido van Rossum · 11 years ago
  47. 3317a13 asyncio: Pause accepting whenever accept() returns certain errors. Fixes asyncio issue #78. by Guido van Rossum · 11 years ago
  48. 0016e1d asyncio: Add new file (forgotten). by Guido van Rossum · 11 years ago
  49. 5969128 asyncio: Add support for running subprocesses on Windows with the IOCP event loop (Richard Oudkerk). by Guido van Rossum · 11 years ago
  50. 90fb914 asyncio: Make the IOCP proactor support "waitable" handles (Richard Oudkerk). by Guido van Rossum · 11 years ago
  51. ec7922c asyncio: Update some comments. by Guido van Rossum · 11 years ago
  52. 1f683bb asyncio: When not closing the connection after receiving EOF, still remove the read handler. by Guido van Rossum · 11 years ago
  53. 934f6ea Switch subprocess stdin to a socketpair, attempting to fix issue #19293 (AIX hang). by Guido van Rossum · 11 years ago
  54. 8da15cc asyncio: be more lenient if we don't understand status returned by waitpid(). by Guido van Rossum · 11 years ago
  55. a7a150c Close #19297: fix resource warnings in test_asyncio. Patch by Vajrasky Kok. by Antoine Pitrou · 11 years ago
  56. 5121deb Issue #19310: asyncio: fix child processes reaping logic. by Charles-François Natali · 11 years ago
  57. bcd7682 Issue #19309: asyncio: make waitpid() wait for all child processes, not only by Charles-François Natali · 11 years ago
  58. 32e4685 (Hopefully) proper fix for gentoo buildbot failure due to lacking AF_INET6 support. by Guido van Rossum · 11 years ago
  59. d20afad Issue #19305: try to fix sporadic test_asyncio failure on FreeBSD 10.0 by Antoine Pitrou · 11 years ago
  60. 4ca7355 Issue #19299: fix refleak test failures in test_asyncio by Antoine Pitrou · 11 years ago
  61. f19a6ef Verify hostname if verify_mode is CERT_OPTIONAL too. by Guido van Rossum · 11 years ago
  62. 355491d Write flow control for asyncio (includes asyncio.streams overhaul). by Guido van Rossum · 11 years ago
  63. 2546a17 Important race condition fix for Tulip. by Guido van Rossum · 11 years ago
  64. 57497ad Rename Transport.pause/resume to pause_reading/pause_writing. Also relax timeout in test_call_later(). by Guido van Rossum · 11 years ago
  65. fc29e0f Rename the logger to plain "logger". by Guido van Rossum · 11 years ago
  66. 27b7c7e Initial checkin of asyncio package (== Tulip, == PEP 3156). by Guido van Rossum · 11 years ago