diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-06-25 22:52:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-25 22:52:06 (GMT) |
commit | 5f3b45a7f4d3273f32a3ca6c5b952af7d40aec9c (patch) | |
tree | fc0a11111d51d646b259a288ec42a752403168cb | |
parent | 53e7bb6447d17a6a37a1b610c5c1124ff9696bb3 (diff) | |
download | cpython-5f3b45a7f4d3273f32a3ca6c5b952af7d40aec9c.zip cpython-5f3b45a7f4d3273f32a3ca6c5b952af7d40aec9c.tar.gz cpython-5f3b45a7f4d3273f32a3ca6c5b952af7d40aec9c.tar.bz2 |
gh-70474: [doc] fix wording of GET_ANEXT doc (GH-94048)
(cherry picked from commit 9af6b75298d066e89646acf8df1704bef183a6f8)
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
-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 74820f9..5ea88c4 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -591,8 +591,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 |