summaryrefslogtreecommitdiff
path: root/Lib/asyncio/streams.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #28370: Speedup asyncio.StreamReader.readexactlyYury Selivanov2016-10-051-19/+17
* Issue #27895: Spelling fixes (Contributed by Ville Skytt?).Martin Panter2016-09-071-1/+1
* Issue #27243: Fix __aiter__ protocolYury Selivanov2016-06-091-0/+6
* asyncio: Fix an SSL warning in StreamReaderProtocol.eof_receivedYury Selivanov2016-05-201-0/+7
* asyncio/streams: Fix code style; delete LimitOverrunError.message attrYury Selivanov2016-05-161-33/+34
* Issue #27041: asyncio: Add loop.create_future methodYury Selivanov2016-05-161-2/+2
* asyncio: Break reference cycle in StreamReaderProtocol.connection_lostYury Selivanov2016-05-131-4/+7
* Issue #26050: Add asyncio.StreamReader.readuntil() method.Yury Selivanov2016-01-111-38/+187
* asyncio: Sync with githubYury Selivanov2015-12-111-0/+3
* asyncio: Add Transport.is_closing()Yury Selivanov2015-11-161-1/+1
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
* Issue #25441: asyncio: Raise error from drain() when socket is closed.Guido van Rossum2015-10-191-0/+9
* Fix StreamReader.__repr__Andrew Svetlov2015-09-291-1/+1
* asyncio: sync with githubVictor Stinner2015-07-251-1/+19
* asyncio: Add asyncio.compat moduleVictor Stinner2015-07-251-2/+2
* Sync asyncio code from default branch.Yury Selivanov2015-05-131-0/+14
* Issue #23456: Add missing @coroutine decorators in asyncioVictor Stinner2015-03-181-0/+1
* Backout changeset 6ab2575bc12bVictor Stinner2015-01-151-21/+4
* StreamWriter: close() now clears the reference to the transportVictor Stinner2015-01-151-4/+21
* Issue #23198: Reactor asyncio.StreamReaderVictor Stinner2015-01-141-25/+22
* asyncio: sync with TulipVictor Stinner2015-01-091-3/+7
* asyncio, tulip issue 193: Convert StreamWriter.drain() to a classic coroutineVictor Stinner2014-07-221-19/+18
* asyncio: sync with TulipVictor Stinner2014-07-141-0/+12
* asyncio: sync with TulipVictor Stinner2014-07-111-1/+0
* asyncio: sync with TulipVictor Stinner2014-07-081-1/+1
* asyncio: sync with Tulip, add a new asyncio.coroutines moduleVictor Stinner2014-06-291-8/+10
* asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if ...Guido van Rossum2014-05-121-6/+11
* asyncio: Make tests pass on Windows.Guido van Rossum2014-02-181-1/+3
* asyncio: Add support for UNIX Domain Sockets.Yury Selivanov2014-02-181-1/+38
* asyncio.streams.StreamReader: Add 'at_eof()' methodYury Selivanov2014-02-061-0/+4
* asyncio.streams: Use bytebuffer in StreamReader; Add assertion in feed_dataYury Selivanov2014-02-051-49/+24
* asyncio: Fix misc whitespace issues.Guido van Rossum2014-01-301-0/+1
* asyncio: Refactor drain logic in streams.py to be reusable.Guido van Rossum2014-01-291-36/+61
* Update asyncio from the Tulip projectVictor Stinner2014-01-251-6/+16
* asyncio (Tulip issue 110): StreamReader.read() and StreamReader.readline() nowVictor Stinner2014-01-231-7/+14
* asyncio: Fix open_connection() documentation, writer is a StreamWriterVictor Stinner2014-01-231-1/+1
* asyncio: Tiny cleanup in streams.py.Guido van Rossum2014-01-101-2/+2
* Fix typo in asyncio/streams.py.Guido van Rossum2014-01-071-1/+1
* asyncio: Fix deadlock in readexactly(). Fixes issue #20154.Guido van Rossum2014-01-061-10/+19
* asyncio: Add StreamReaderProtocol to __all__.Guido van Rossum2013-11-251-1/+1
* asyncio: Add streams.start_server(), by Gustavo Carneiro.Guido van Rossum2013-11-191-2/+51
* Write flow control for asyncio (includes asyncio.streams overhaul).Guido van Rossum2013-10-181-58/+150
* Rename Transport.pause/resume to pause_reading/pause_writing. Also relax time...Guido van Rossum2013-10-181-2/+2
* Initial checkin of asyncio package (== Tulip, == PEP 3156).Guido van Rossum2013-10-171-0/+257