aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/streams.py
Commit message (Expand)AuthorAge
* Forbid creating of stream objects outside of asyncio (#13101)Andrew Svetlov2019-05-06
* bpo-35065: Remove `StreamReaderProtocol._untrack_reader` (#10212)Vincent Michel2018-11-08
* bpo-34666: Implement stream.awrite() and stream.aclose() (GH-9274)Andrew Svetlov2018-09-13
* bpo-34638: Store a weak reference to stream reader to break strong references...Andrew Svetlov2018-09-12
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-11
* bpo-33353: test_asyncio use set_write_buffer_limits() (GH-7200)Victor Stinner2018-05-29
* bpo-32391: Implement StreamWriter.wait_closed() (#5281)Andrew Svetlov2018-01-25
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-10
* bpo-32193: Convert asyncio to async/await usage (#4753)Andrew Svetlov2017-12-09
* Fix asyncio.streams.FlowControlMixin docstring typo. (#4578)John Chen2017-12-01
* asyncio: Remove asyncio/compat.py (#4606)Victor Stinner2017-11-28
* bpo-32034: Make IncompleteReadError & LimitOverrunError pickleable #4409Yury Selivanov2017-11-15
* bpo-31709: Drop support for asynchronous __aiter__. (#3903)Yury Selivanov2017-10-06
* Issue #28370: Speedup asyncio.StreamReader.readexactlyYury Selivanov2016-10-05
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-07
* Issue #27243: Fix __aiter__ protocolYury Selivanov2016-06-09
* asyncio: Fix an SSL warning in StreamReaderProtocol.eof_receivedYury Selivanov2016-05-20
* asyncio/streams: Fix code style; delete LimitOverrunError.message attrYury Selivanov2016-05-16
* Issue #27041: asyncio: Add loop.create_future methodYury Selivanov2016-05-16
* asyncio: Break reference cycle in StreamReaderProtocol.connection_lostYury Selivanov2016-05-13
* Issue #26050: Add asyncio.StreamReader.readuntil() method.Yury Selivanov2016-01-11
* asyncio: Sync with githubYury Selivanov2015-12-11
* asyncio: Add Transport.is_closing()Yury Selivanov2015-11-16
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-02
* Issue #25441: asyncio: Raise error from drain() when socket is closed.Guido van Rossum2015-10-19
* Fix StreamReader.__repr__Andrew Svetlov2015-09-29
* asyncio: sync with githubVictor Stinner2015-07-25
* asyncio: Add asyncio.compat moduleVictor Stinner2015-07-25
* Sync asyncio code from default branch.Yury Selivanov2015-05-13
* Issue #23456: Add missing @coroutine decorators in asyncioVictor Stinner2015-03-18
* Backout changeset 6ab2575bc12bVictor Stinner2015-01-15
* StreamWriter: close() now clears the reference to the transportVictor Stinner2015-01-15
* Issue #23198: Reactor asyncio.StreamReaderVictor Stinner2015-01-14
* asyncio: sync with TulipVictor Stinner2015-01-09
* asyncio, tulip issue 193: Convert StreamWriter.drain() to a classic coroutineVictor Stinner2014-07-22
* asyncio: sync with TulipVictor Stinner2014-07-14
* asyncio: sync with TulipVictor Stinner2014-07-11
* asyncio: sync with TulipVictor Stinner2014-07-08
* asyncio: sync with Tulip, add a new asyncio.coroutines moduleVictor Stinner2014-06-29
* asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if ...Guido van Rossum2014-05-12
* asyncio: Make tests pass on Windows.Guido van Rossum2014-02-18
* asyncio: Add support for UNIX Domain Sockets.Yury Selivanov2014-02-18
* asyncio.streams.StreamReader: Add 'at_eof()' methodYury Selivanov2014-02-06
* asyncio.streams: Use bytebuffer in StreamReader; Add assertion in feed_dataYury Selivanov2014-02-05
* asyncio: Fix misc whitespace issues.Guido van Rossum2014-01-30
* asyncio: Refactor drain logic in streams.py to be reusable.Guido van Rossum2014-01-29
* Update asyncio from the Tulip projectVictor Stinner2014-01-25
* asyncio (Tulip issue 110): StreamReader.read() and StreamReader.readline() nowVictor Stinner2014-01-23
* asyncio: Fix open_connection() documentation, writer is a StreamWriterVictor Stinner2014-01-23
* asyncio: Tiny cleanup in streams.py.Guido van Rossum2014-01-10