aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/streams.py
Commit message (Expand)AuthorAge
* gh-117722: Fix Stream.readuntil with non-bytes buffer objects (#117723)Bruce Merry2024-04-11
* gh-81322: support multiple separators in StreamReader.readuntil (#16429)Bruce Merry2024-04-08
* gh-114914: Avoid keeping dead StreamWriter alive (#115661)Pierre Ossman (ThinLinc team)2024-02-27
* gh-113538: Don't error in stream reader protocol callback when task is cancel...Guido van Rossum2024-01-04
* gh-109538: Avoid RuntimeError when StreamWriter is deleted with closed loop (...DPR2023-11-15
* GH-110894: Call loop exception handler for exceptions in client_connected_cb ...Kumar Aditya2023-11-02
* Remove loop from docstring for asyncio.streams.open_connection (#108528)Tom Gillespie2023-09-26
* GH-106684: raise `ResourceWarning` when `asyncio.StreamWriter` is not closed ...Kumar Aditya2023-08-05
* gh-100226: Clarify StreamReader.read behavior (#101807)Jan Gosmann2023-02-17
* gh-101317: Add `ssl_shutdown_timeout` parameter for `asyncio.StreamWriter.sta...beavailable2023-02-01
* gh-99941: Ensure that asyncio.Protocol.data_received receives immutable bytes...DarioDaF2022-12-10
* gh-93453: No longer create an event loop in get_event_loop() (#98440)Serhiy Storchaka2022-12-06
* GH-74116: Allow multiple drain waiters for asyncio.StreamWriter (GH-94705)Kumar Aditya2022-08-29
* gh-90467: StreamReaderProtocol - add strong reference to created task (#96323)Kirill2022-08-27
* gh-84623: Remove unused imports in stdlib (#93773)Victor Stinner2022-06-13
* gh-79156: Add start_tls() method to streams API (#91453)Oleg Iarygin2022-04-15
* bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...Serhiy Storchaka2021-04-25
* bpo-42392: Remove loop parameter from asyncio.streams (GH-23517)Yurii Karabas2020-11-26
* bpo-38529: Fix asyncio stream warning (GH-17474)Andrew Svetlov2019-12-07
* bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482)Yury Selivanov2019-09-29
* bpo-36889: Document Stream class and add docstrings (GH-14488)Xtreak2019-09-13
* bpo-38066: Hide internal Stream methods (GH-15762)Andrew Svetlov2019-09-10
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-30
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-30
* Replace deprecation warning with RuntimeError (GH-14397)Andrew Svetlov2019-06-27
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [str...Emmanuel Arias2019-06-04
* bpo-36889: Merge asyncio streams (GH-13251)Andrew Svetlov2019-05-27
* bpo-36801: Temporarily fix regression in writer.drain() (#13330)Andrew Svetlov2019-05-15
* bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313)Andrew Svetlov2019-05-14
* bpo-36802: Drop awrite()/aclose(), support await write() and await close() in...Andrew Svetlov2019-05-09
* bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13...Andrew Svetlov2019-05-07
* 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