summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/streams.py
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-113538: Don't error in stream reader protocol callback when task is...Miss Islington (bot)2024-01-041-0/+3
* [3.11] gh-109538: Catch closed loop runtime error and issue warning (GH-11198...DPR2023-11-201-2/+5
* [3.11] [3.12] GH-110894: Call loop exception handler for exceptions in client...Miss Islington (bot)2023-11-041-0/+12
* [3.11] Remove loop from docstring for asyncio.streams.open_connection (GH-108...Miss Islington (bot)2023-09-271-3/+2
* [3.11] [3.12] GH-106684: Close `asyncio.StreamWriter` when `asyncio.StreamWr...Miss Islington (bot)2023-08-101-0/+4
* [3.11] gh-100226: Clarify StreamReader.read behavior (GH-101807) (#102001)Miss Islington (bot)2023-02-231-8/+9
* GH-74116: Allow multiple drain waiters for asyncio.StreamWriter (GH-94705) (#...Miss Islington (bot)2022-08-301-19/+16
* gh-90467: StreamReaderProtocol - add strong reference to created task (GH-963...Miss Islington (bot)2022-08-301-1/+3
* gh-79156: Add start_tls() method to streams API (#91453)Oleg Iarygin2022-04-151-0/+21
* bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...Serhiy Storchaka2021-04-251-5/+9
* bpo-42392: Remove loop parameter from asyncio.streams (GH-23517)Yurii Karabas2020-11-261-28/+9
* bpo-38529: Fix asyncio stream warning (GH-17474)Andrew Svetlov2019-12-071-18/+1
* bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482)Yury Selivanov2019-09-301-1161/+91
* bpo-36889: Document Stream class and add docstrings (GH-14488)Xtreak2019-09-131-0/+21
* bpo-38066: Hide internal Stream methods (GH-15762)Andrew Svetlov2019-09-101-6/+43
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-301-2/+2
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-301-1/+1
* Replace deprecation warning with RuntimeError (GH-14397)Andrew Svetlov2019-06-271-4/+2
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [str...Emmanuel Arias2019-06-051-0/+16
* bpo-36889: Merge asyncio streams (GH-13251)Andrew Svetlov2019-05-271-142/+1094
* bpo-36801: Temporarily fix regression in writer.drain() (#13330)Andrew Svetlov2019-05-141-3/+1
* bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313)Andrew Svetlov2019-05-141-1/+10
* bpo-36802: Drop awrite()/aclose(), support await write() and await close() in...Andrew Svetlov2019-05-091-8/+27
* bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13...Andrew Svetlov2019-05-071-8/+13
* Forbid creating of stream objects outside of asyncio (#13101)Andrew Svetlov2019-05-071-16/+51
* bpo-35065: Remove `StreamReaderProtocol._untrack_reader` (#10212)Vincent Michel2018-11-081-6/+0
* bpo-34666: Implement stream.awrite() and stream.aclose() (GH-9274)Andrew Svetlov2018-09-131-1/+9
* bpo-34638: Store a weak reference to stream reader to break strong references...Andrew Svetlov2018-09-121-10/+81
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-111-40/+8
* bpo-33353: test_asyncio use set_write_buffer_limits() (GH-7200)Victor Stinner2018-05-291-1/+1
* bpo-32391: Implement StreamWriter.wait_closed() (#5281)Andrew Svetlov2018-01-241-9/+27
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-101-21/+20
* bpo-32193: Convert asyncio to async/await usage (#4753)Andrew Svetlov2017-12-081-45/+33
* Fix asyncio.streams.FlowControlMixin docstring typo. (#4578)John Chen2017-12-011-1/+1
* asyncio: Remove asyncio/compat.py (#4606)Victor Stinner2017-11-281-1/+0
* bpo-32034: Make IncompleteReadError & LimitOverrunError pickleable #4409Yury Selivanov2017-11-151-0/+6
* bpo-31709: Drop support for asynchronous __aiter__. (#3903)Yury Selivanov2017-10-061-17/+9
* 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