1. 4cbe7a3 Replace deprecation warning with RuntimeError (GH-14397) by Miss Islington (bot) · 5 years ago
  2. 8899b11 bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [streams] (GH-13671) by Miss Islington (bot) · 5 years ago
  3. 23b4b69 bpo-36889: Merge asyncio streams (GH-13251) by Andrew Svetlov · 5 years ago
  4. 54b74fe bpo-36801: Temporarily fix regression in writer.drain() (#13330) by Andrew Svetlov · 5 years ago
  5. f12ba7c bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313) by Andrew Svetlov · 5 years ago
  6. a076e4f bpo-36802: Drop awrite()/aclose(), support await write() and await close() instead (#13099) by Andrew Svetlov · 5 years ago
  7. 1cc0ee7 bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13098) by Andrew Svetlov · 5 years ago
  8. ad4ed87 Forbid creating of stream objects outside of asyncio (#13101) by Andrew Svetlov · 5 years ago
  9. fd512d7 bpo-35065: Remove `StreamReaderProtocol._untrack_reader` (#10212) by Vincent Michel · 6 years ago
  10. 11194c8 bpo-34666: Implement stream.awrite() and stream.aclose() (GH-9274) by Andrew Svetlov · 6 years ago
  11. a5d1eb8 bpo-34638: Store a weak reference to stream reader to break strong references loop (GH-9201) by Andrew Svetlov · 6 years ago
  12. 0baa72f bpo-34622: Extract asyncio exceptions into a separate module (GH-9141) by Andrew Svetlov · 6 years ago
  13. 9551f77 bpo-33353: test_asyncio use set_write_buffer_limits() (GH-7200) by Victor Stinner · 6 years ago
  14. fe133aa bpo-32391: Implement StreamWriter.wait_closed() (#5281) by Andrew Svetlov · 7 years ago
  15. 6370f34 bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775) by Yury Selivanov · 7 years ago
  16. 5f841b5 bpo-32193: Convert asyncio to async/await usage (#4753) by Andrew Svetlov · 7 years ago
  17. 8f5c28b Fix asyncio.streams.FlowControlMixin docstring typo. (#4578) by John Chen · 7 years ago
  18. 3f438a9 asyncio: Remove asyncio/compat.py (#4606) by Victor Stinner · 7 years ago
  19. 43605e6 bpo-32034: Make IncompleteReadError & LimitOverrunError pickleable #4409 by Yury Selivanov · 7 years ago
  20. faa135a bpo-31709: Drop support for asynchronous __aiter__. (#3903) by Yury Selivanov · 7 years ago
  21. 3e56ff0 Issue #28370: Speedup asyncio.StreamReader.readexactly by Yury Selivanov · 8 years ago
  22. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  23. a6f6edb Issue #27243: Fix __aiter__ protocol by Yury Selivanov · 8 years ago
  24. 3dc5129 asyncio: Fix an SSL warning in StreamReaderProtocol.eof_received by Yury Selivanov · 8 years ago
  25. b461791 asyncio/streams: Fix code style; delete LimitOverrunError.message attr by Yury Selivanov · 8 years ago
  26. 7661db6 Issue #27041: asyncio: Add loop.create_future method by Yury Selivanov · 8 years ago
  27. 32dae3d asyncio: Break reference cycle in StreamReaderProtocol.connection_lost by Yury Selivanov · 8 years ago
  28. d9d0e86 Issue #26050: Add asyncio.StreamReader.readuntil() method. by Yury Selivanov · 9 years ago
  29. dddc781 asyncio: Sync with github by Yury Selivanov · 9 years ago
  30. 5bb1afb asyncio: Add Transport.is_closing() by Yury Selivanov · 9 years ago
  31. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  32. c44ecdf Issue #25441: asyncio: Raise error from drain() when socket is closed. by Guido van Rossum · 9 years ago
  33. d94c1b9 Fix StreamReader.__repr__ by Andrew Svetlov · 9 years ago
  34. eaf16ab asyncio: sync with github by Victor Stinner · 9 years ago
  35. 71080fc asyncio: Add asyncio.compat module by Victor Stinner · 9 years ago
  36. d08c363 Sync asyncio code from default branch. by Yury Selivanov · 9 years ago
  37. d6dc7bd Issue #23456: Add missing @coroutine decorators in asyncio by Victor Stinner · 9 years ago
  38. 406204c Backout changeset 6ab2575bc12b by Victor Stinner · 10 years ago
  39. e7a3571 StreamWriter: close() now clears the reference to the transport by Victor Stinner · 10 years ago
  40. c2c12e4 Issue #23198: Reactor asyncio.StreamReader by Victor Stinner · 10 years ago
  41. 70db9e4 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  42. 31e7bfa asyncio, tulip issue 193: Convert StreamWriter.drain() to a classic coroutine by Victor Stinner · 10 years ago
  43. acdb782 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  44. 770e48d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  45. 896a25a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  46. f951d28 asyncio: sync with Tulip, add a new asyncio.coroutines module by Victor Stinner · 10 years ago
  47. 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
  48. e3e786c asyncio: Make tests pass on Windows. by Guido van Rossum · 10 years ago
  49. b057c52 asyncio: Add support for UNIX Domain Sockets. by Yury Selivanov · 10 years ago
  50. f0020f5 asyncio.streams.StreamReader: Add 'at_eof()' method by Yury Selivanov · 10 years ago
  51. e694c97 asyncio.streams: Use bytebuffer in StreamReader; Add assertion in feed_data by Yury Selivanov · 10 years ago
  52. a849be9 asyncio: Fix misc whitespace issues. by Guido van Rossum · 10 years ago
  53. 4d62d0b asyncio: Refactor drain logic in streams.py to be reusable. by Guido van Rossum · 10 years ago
  54. 8dffc45 Update asyncio from the Tulip project by Victor Stinner · 11 years ago
  55. 183e347 asyncio (Tulip issue 110): StreamReader.read() and StreamReader.readline() now by Victor Stinner · 11 years ago
  56. 3eb45d3 asyncio: Fix open_connection() documentation, writer is a StreamWriter by Victor Stinner · 11 years ago
  57. efef9d3 asyncio: Tiny cleanup in streams.py. by Guido van Rossum · 11 years ago
  58. 6188bd4 Fix typo in asyncio/streams.py. by Guido van Rossum · 11 years ago
  59. 3845521 asyncio: Fix deadlock in readexactly(). Fixes issue #20154. by Guido van Rossum · 11 years ago
  60. 49c96fb asyncio: Add StreamReaderProtocol to __all__. by Guido van Rossum · 11 years ago
  61. 1540b16 asyncio: Add streams.start_server(), by Gustavo Carneiro. 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. 57497ad Rename Transport.pause/resume to pause_reading/pause_writing. Also relax timeout in test_call_later(). by Guido van Rossum · 11 years ago
  64. 27b7c7e Initial checkin of asyncio package (== Tulip, == PEP 3156). by Guido van Rossum · 11 years ago