]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-84747: Add `async for` comment for StreamReader (GH-98633)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 26 Oct 2022 02:23:08 +0000 (19:23 -0700)
committerGitHub <noreply@github.com>
Wed, 26 Oct 2022 02:23:08 +0000 (19:23 -0700)
(cherry picked from commit 4196ee5c8b489f457874759ee22c9237e08f85c4)

Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com>
Doc/library/asyncio-stream.rst

index 19210a556057f2f2a89a0c04454ae2f7b189061a..bed10a40fb7e6b041e14a9e15d7be01afb648c26 100644 (file)
@@ -183,7 +183,8 @@ StreamReader
 .. class:: StreamReader
 
    Represents a reader object that provides APIs to read data
-   from the IO stream.
+   from the IO stream. As an :term:`asynchronous iterable`, the
+   object supports the :keyword:`async for` statement.
 
    It is not recommended to instantiate *StreamReader* objects
    directly; use :func:`open_connection` and :func:`start_server`