summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-stream.rst
Commit message (Collapse)AuthorAgeFilesLines
* gh-100226: Clarify StreamReader.read behavior (GH-101807)Miss Islington (bot)2023-02-171-2/+10
| | | | | (cherry picked from commit 77d95c83733722ada35eb1ef89ae5b84a51ddd32) Co-authored-by: Jan Gosmann <jan@hyper-world.de>
* gh-100920: Update documentation for `asyncio.StreamWriter.wait_closed` ↵Miss Islington (bot)2023-02-031-2/+8
| | | | | | | (GH-101514) (cherry picked from commit 5c39daf50b7f388f9b24bb2d6ef415955440bebf) Co-authored-by: Viet Than <thanhoangviet@gmail.com>
* gh-84747: Add `async for` comment for StreamReader (GH-98633)Miss Islington (bot)2022-10-261-1/+2
| | | | | (cherry picked from commit 4196ee5c8b489f457874759ee22c9237e08f85c4) Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com>
* GH-88968: Add notes about socket ownership transfers (GH-97936)Miss Islington (bot)2022-10-051-0/+24
| | | | | (cherry picked from commit 74ea204634f8eb4745afd5cb75c3fe7749cf38b5) Co-authored-by: Guido van Rossum <guido@python.org>
* gh-86986: Drop compatibility support for Sphinx 2 (GH-93737)Miss Islington (bot)2022-06-211-1/+1
| | | | | | | | | | | | * Revert "bpo-42843: Keep Sphinx 1.8 and Sphinx 2 compatibility (GH-24282)" This reverts commit 5c1f15b4b1024cbf0acc85832f0c623d1a4605fd * Revert "bpo-42579: Make workaround for various versions of Sphinx more robust (GH-23662)" This reverts commit b63a620014b67a6e63d10783149c41baaf59def8. (cherry picked from commit 0efe3a1636c143fe0694a8e4d25d6eae19e0d618) Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* [3.10] bpo-43215: Document Happy Eyeballs args of asyncio.open_connection ↵Illia Volochii2022-03-141-1/+5
| | | | | | | | (GH-24525) (GH-31869) Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com> (cherry picked from commit 3543ddb4c4ebc26fb2d6c67a97e66f5267876f72) Co-authored-by: Illia Volochii <illia.volochii@gmail.com>
* bpo-46777: Fix incorrect use of directives in asyncio documentation (GH-31388)Miss Islington (bot)2022-02-181-40/+14
| | | | | (cherry picked from commit 2923d87ca258b9d421e8147b12f0d98295ee3f8e) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* bpo-45351, asyncio: Enhance echo server example, print all addresses (GH-28828)Miss Islington (bot)2021-10-111-2/+2
| | | | | (cherry picked from commit 659812b451aefe1f0e5f83540296519a5fb8f313) Co-authored-by: Olaf van der Spek <olafvdspek@gmail.com>
* [3.10] bpo-42392: [docs] Add deprecated-removed loop labels for asyncio ↵Miss Islington (bot)2021-05-261-0/+29
| | | | | | | | | | | (GH-26357) (GH-26390) * Add deprecated-removed loop labels for all reelvant functions/classes in asyncio (cherry picked from commit d8fd8c8568cbc2f53c1abeda3596a89a46f0e3d7) Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Automerge-Triggered-By: GH:gpshead
* bpo-42843: Keep Sphinx 1.8 and Sphinx 2 compatibility (GH-24282)Julien Palard2021-01-251-1/+1
|
* [doc] Fix erroneous backslashes in signatures and names (GH-23658)Andre Delfino2020-12-171-5/+5
| | | | | The issue being resolved is shown in the 3.10 docs (if you select docs for older versions you won't see a visual glitch). The newer sphinx version that produces the 3.10 docs doesn't treat the backslash to escape things in some situations it previously did.
* bpo-42392: Remove deprecated loop parameter from docs (GH-23552)Yurii Karabas2020-11-291-15/+8
|
* bpo-38738: Fix formatting of True and False. (GH-17083)Serhiy Storchaka2019-11-121-2/+2
| | | | | | | | | * "Return true/false" is replaced with "Return ``True``/``False``" if the function actually returns a bool. * Fixed formatting of some True and False literals (now in monospace). * Replaced "True/False" with "true/false" if it can be not only bool. * Replaced some 1/0 with True/False if it corresponds the code. * "Returns <bool>" is replaced with "Return <bool>".
* docs: Add asyncio source code links (GH-16640)Kyle Stanley2019-10-101-0/+4
|
* bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482)Yury Selivanov2019-09-301-499/+64
| | | See https://bugs.python.org/issue38242 for more details
* bpo-36889: Document Stream class and add docstrings (GH-14488)Xtreak2019-09-131-5/+174
| | | | | | | | | | | * This just copies the docs from `StreamWriter` and `StreamReader`. * Add docstring for asyncio functions. https://bugs.python.org/issue36889 Automerge-Triggered-By: @asvetlov
* bpo-36889: Document asyncio Stream and StreamServer (GH-14203)Xtreak2019-06-241-61/+277
|
* bpo-37105: Add deprecated-remove information on stream doc (#13672)Emmanuel Arias2019-05-311-0/+16
| | | | | | | | | | * Add deprecated-remove information on stream doc According to the code on streams.py the functions: ``open_connection()``, ``start_server()``, ``open_unix_connection()``, ``start_unix_server()`` are deprecated. I infor that on documentation.
* bpo-36802: Drop awrite()/aclose(), support await write() and await close() ↵Andrew Svetlov2019-05-091-31/+59
| | | | instead (#13099)
* bpo-11233: Create availability directive for documentation (GH-9692)Cheryl Sabella2018-10-121-2/+2
| | | | | | Replace "Availability: xxx" with ".. availability:: xxx" in the doc. Original patch by Georg Brandl. Co-Authored-By: Georg Brandl <georg@python.org>
* bpo-33649: A copy-editing pass on asyncio documentation (GH-9376)Elvis Pranskevichus2018-09-171-36/+32
|
* bpo-33649: Add low-level APIs index. (GH-9364)Yury Selivanov2018-09-171-5/+5
|
* bpo-33649: Add high-level APIs cheat-sheet (GH-9319)Yury Selivanov2018-09-141-0/+2
|
* bpo-34666: Implement stream.awrite() and stream.aclose() (GH-9274)Andrew Svetlov2018-09-131-21/+45
|
* bpo-33649: Cleanup asyncio/streams and asyncio/synchronization docs (GH-9192)Yury Selivanov2018-09-121-113/+73
|
* bpo-34613: document the correct value of limit argument of ↵Bram2018-09-111-1/+3
| | | | | | | | | | asyncio.StreamReader (GH-9121) The default value of asyncio.StreamReader *limit* is `_DEFAULT_LIMIT` instead of `None`. <!-- issue-number: [bpo-34613](https://www.bugs.python.org/issue34613) --> https://bugs.python.org/issue34613 <!-- /issue-number -->
* bpo-33649: First asyncio docs improvement pass (GH-9142)Yury Selivanov2018-09-111-152/+142
| | | | | | | | | | | | | Rewritten/updated sections: * Event Loop APIs * Transports & Protocols * Streams * Exceptions * Policies * Queues * Subprocesses * Platforms
* bpo-34335: Use async/await syntax in documentation examples (GH-8674)Mikhail Terekhov2018-08-071-2/+1
|
* bpo-33736: Improve the documentation of asyncio stream APIs (GH-7326)Elvis Pranskevichus2018-06-081-30/+67
|
* bpo-32391: Implement StreamWriter.wait_closed() (#5281)Andrew Svetlov2018-01-241-0/+15
|
* bpo-32258: Replace 'yield from' to 'await' in asyncio docs (#4779)Andrew Svetlov2017-12-111-16/+13
| | | | | | * Replace 'yield from' to 'await' in asyncio docs * Fix docstrings
* bpo-32154: Remove asyncio.windows_utils.socketpair (#4609)Victor Stinner2017-11-281-4/+1
|
* Add the link to asyncio source code in the docs (GH-2373)lf2017-07-251-0/+2
|
* Fix default value of StreamReader.readuntil()Berker Peksag2016-10-171-1/+1
| | | | Reported by Sam Lunt on docs@p.o.
* Issue #27700: Document AbstractEventLoop, not BaseEventLoop.Guido van Rossum2016-08-081-9/+9
|
* docs: Update asyncio docs & whatsnewYury Selivanov2016-05-161-0/+36
|
* Trivial typoJesus Cea2016-04-191-1/+1
|
* Issue #26368: fix typo in asynchio stream doc, reported by Ryan Stuart.Ned Deily2016-02-161-1/+1
|
* docs/asyncio: Twek sections names per Nick Coghlan suggestionYury Selivanov2015-12-171-3/+3
|
* Issue #24885: Update note in docs about stream convenience functions.Guido van Rossum2015-10-191-4/+7
|
* Fix English phrasing.R David Murray2015-09-271-2/+2
|
* Marked keystrokes with the :kbd: role.Serhiy Storchaka2015-09-121-1/+1
| | | | Fixed the case of the "Ctrl-" prefixes.
* docs/asyncio: Document new ensure_future() and deprecated async()Yury Selivanov2015-05-111-1/+1
|
* asyncio: add a note about (non) thread safety in each classVictor Stinner2015-02-251-0/+4
|
* asyncio doc: annotate coroutine on coroutine functions and methodsVictor Stinner2015-02-121-8/+8
|
* Closes #22348: Rephrase asyncio.StreamWriter.drain() documentationVictor Stinner2014-11-281-4/+10
| | | | Patch written by Martin Richard.
* asyncio: add missing @coroutine decoratorVictor Stinner2014-10-121-0/+2
|
* asyncio doc: add TCP echo client/server using streamsVictor Stinner2014-10-121-0/+78
|
* asyncio doc: socket.socketpair() is not available on Windows yetVictor Stinner2014-10-111-2/+5
|
* asyncio doc: add examples showing the 3 ways to wait for data from an openVictor Stinner2014-10-111-0/+50
| | | | socket