diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2022-06-25 22:44:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-25 22:44:30 (GMT) |
commit | 9af6b75298d066e89646acf8df1704bef183a6f8 (patch) | |
tree | c3f80d785c164918d7c0ba392953ab34a4805d68 /Doc | |
parent | c57a1c76d71075b14f6524b4681f29a3f1e88cb2 (diff) | |
download | cpython-9af6b75298d066e89646acf8df1704bef183a6f8.zip cpython-9af6b75298d066e89646acf8df1704bef183a6f8.tar.gz cpython-9af6b75298d066e89646acf8df1704bef183a6f8.tar.bz2 |
gh-70474: [doc] fix wording of GET_ANEXT doc (GH-94048)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/dis.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 10154d8..84712bc 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -512,8 +512,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 |