1. 956de69 Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods of by Victor Stinner · 10 years ago
  2. 7243b57 don't require OpenSSL SNI to pass hostname to ssl functions (#22921) by Benjamin Peterson · 10 years ago
  3. 5e63120 asyncio: BaseSelectorEventLoop.close() now closes the self-pipe before calling by Victor Stinner · 10 years ago
  4. 004adb9 asyncio: Move loop attribute to _FlowControlMixin by Victor Stinner · 10 years ago
  5. 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
  6. 0e34dc3 asyncio: enhance protocol representation by Victor Stinner · 10 years ago
  7. d5aeccf9 asyncio, Tulip issue 205: Fix a race condition in BaseSelectorEventLoop.sock_connect() by Victor Stinner · 10 years ago
  8. b261475 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  9. 9c9f1f1 Close #22063: socket operations (socket,recv, sock_sendall, sock_connect, by Victor Stinner · 10 years ago
  10. 65dd69a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  11. fe5649c Python issue #21645, Tulip issue 192: Rewrite signal handling by Victor Stinner · 10 years ago
  12. e912e65 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  13. b28dbac asyncio, Tulip issue 180: Make Server attributes and methods private by Victor Stinner · 10 years ago
  14. bfff45d asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits by Victor Stinner · 10 years ago
  15. 799a60c asyncio: sync with Tulip by Victor Stinner · 10 years ago
  16. 1a870c9 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  17. a9acbe8 Closes #21886, #21447: Fix a race condition in asyncio when setting the result by Victor Stinner · 10 years ago
  18. f328c7d asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the by Victor Stinner · 10 years ago
  19. d143209 Tulip issue 83: document more asyncio functions in docstrings by Victor Stinner · 10 years ago
  20. 54c4b8e Closes #21595: asyncio.BaseSelectorEventLoop._read_from_self() now reads all by Victor Stinner · 10 years ago
  21. bb2fc5b Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop by Victor Stinner · 10 years ago
  22. 3207a03 Fix for raising exception not derived from BaseException in _SelectorSslTransport.resume_reading by Andrew Svetlov · 10 years ago
  23. 3d139d8 asyncio: Fix the second half of issue #21447: race in _write_to_self(). by Guido van Rossum · 10 years ago
  24. eeeebcd asyncio: Synchronize with Tulip by Victor Stinner · 11 years ago
  25. c89c8a7 asyncio/windows_events.py: use more revelant names to overlapped callbacks by Victor Stinner · 11 years ago
  26. b0b0e62 asyncio: Fix spelling and typos. by Yury Selivanov · 11 years ago
  27. 065ca25 asyncio, Tulip issue 139: Improve error messages on "fatal errors" by Victor Stinner · 11 years ago
  28. c098241 asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin by Yury Selivanov · 11 years ago
  29. ff827f0 asyncio: New error handling API. Issue #20681. by Yury Selivanov · 11 years ago
  30. 2877346 ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if by Victor Stinner · 11 years ago
  31. dc62b7e asyncio: Tulip issue 112: Inline make_handle() into Handle constructor by Victor Stinner · 11 years ago
  32. 85310a5 Issue #20505: Remove resolution and _granularity from selectors and asyncio by Victor Stinner · 11 years ago
  33. 3ccead1 asyncio: Refactoring: move write flow control to a subclass/mixin. by Guido van Rossum · 11 years ago
  34. 669eeaf Merge latest Tulip into asyncio by Victor Stinner · 11 years ago
  35. 8dffc45 Update asyncio from the Tulip project by Victor Stinner · 11 years ago
  36. f67255a Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximum by Victor Stinner · 11 years ago
  37. 6d8c1ab Issue #19509: Finish implementation of check_hostname by Christian Heimes · 11 years ago
  38. 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
  39. 7fa6e1a Keep asyncio working with Python 3.3 too. by Guido van Rossum · 11 years ago
  40. 67986f9 Issue #19735: Implement private function ssl._create_stdlib_context() to by Christian Heimes · 11 years ago
  41. 2335de7 asyncio: Replace connection_refused() with error_received(). by Guido van Rossum · 11 years ago
  42. 28dff0d asyncio: Better-looking errors when ssl module cannot be imported. In part by Arnaud Faure. by Guido van Rossum · 11 years ago
  43. 3a70392 asyncio: Log a warning when eof_received() returns true and using ssl. 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. 1f683bb asyncio: When not closing the connection after receiving EOF, still remove the read handler. by Guido van Rossum · 11 years ago
  49. 4ca7355 Issue #19299: fix refleak test failures in test_asyncio by Antoine Pitrou · 11 years ago
  50. f19a6ef Verify hostname if verify_mode is CERT_OPTIONAL too. by Guido van Rossum · 11 years ago
  51. 355491d Write flow control for asyncio (includes asyncio.streams overhaul). by Guido van Rossum · 11 years ago
  52. 2546a17 Important race condition fix for Tulip. by Guido van Rossum · 11 years ago
  53. 57497ad Rename Transport.pause/resume to pause_reading/pause_writing. Also relax timeout in test_call_later(). by Guido van Rossum · 11 years ago
  54. fc29e0f Rename the logger to plain "logger". by Guido van Rossum · 11 years ago
  55. 27b7c7e Initial checkin of asyncio package (== Tulip, == PEP 3156). by Guido van Rossum · 11 years ago