[Python-checkins] gh-70474: [doc] fix wording of GET_ANEXT doc (GH-94048)

miss-islington webhook-mailer at python.org
Sat Jun 25 18:51:51 EDT 2022


https://github.com/python/cpython/commit/4ec1f8d6439b8086c0848be43a7ff55cb4ab10ab
commit: 4ec1f8d6439b8086c0848be43a7ff55cb4ab10ab
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-06-25T15:51:19-07:00
summary:

gh-70474: [doc] fix wording of GET_ANEXT doc (GH-94048)

(cherry picked from commit 9af6b75298d066e89646acf8df1704bef183a6f8)

Co-authored-by: Irit Katriel <1055913+iritkatriel at users.noreply.github.com>

files:
M Doc/library/dis.rst

diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 27a2f6bf79524..505aa8188560f 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -514,8 +514,8 @@ the original TOS1.
 
 .. opcode:: GET_ANEXT
 
-   Implements ``PUSH(get_awaitable(TOS.__anext__()))``.  See ``GET_AWAITABLE``
-   for details about ``get_awaitable``
+   Pushes ``get_awaitable(TOS.__anext__())`` to the stack.  See
+   ``GET_AWAITABLE`` for details about ``get_awaitable``.
 
    .. versionadded:: 3.5
 



More information about the Python-checkins mailing list