diff options
author | Brandt Bucher <brandt@python.org> | 2022-01-04 19:38:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 19:38:32 (GMT) |
commit | 31e43cbe5f01cdd5b5ab330ec3040920e8b61a91 (patch) | |
tree | d1fe86279c419ff34eae29c77a538b1d053f47cc /Doc/library/dis.rst | |
parent | f404e26d749c85eef7b5be836375260855050ee3 (diff) | |
download | cpython-31e43cbe5f01cdd5b5ab330ec3040920e8b61a91.zip cpython-31e43cbe5f01cdd5b5ab330ec3040920e8b61a91.tar.gz cpython-31e43cbe5f01cdd5b5ab330ec3040920e8b61a91.tar.bz2 |
bpo-46009: Remove GEN_START (GH-30367)
Diffstat (limited to 'Doc/library/dis.rst')
-rw-r--r-- | Doc/library/dis.rst | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 87ec584..8490a09 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -1175,14 +1175,6 @@ All of the following opcodes use their arguments. Previously, this instruction also pushed a boolean value indicating success (``True``) or failure (``False``). -.. opcode:: GEN_START (kind) - - Pops TOS. The ``kind`` operand corresponds to the type of generator or - coroutine. The legal kinds are 0 for generator, 1 for coroutine, - and 2 for async generator. - - .. versionadded:: 3.10 - .. opcode:: ROT_N (count) |