diff options
author | Brandt Bucher <brandt@python.org> | 2021-05-02 20:02:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-02 20:02:10 (GMT) |
commit | 0ad1e0384c8afc5259a6d03363491d89500a5d03 (patch) | |
tree | 66debec62434d9503dd8c3b60c22dc99dcd15f95 /Lib/opcode.py | |
parent | 7d2b83e9f092a2ea1f715fe028f7c48324bee756 (diff) | |
download | cpython-0ad1e0384c8afc5259a6d03363491d89500a5d03.zip cpython-0ad1e0384c8afc5259a6d03363491d89500a5d03.tar.gz cpython-0ad1e0384c8afc5259a6d03363491d89500a5d03.tar.bz2 |
bpo-43754: Eliminate bindings for partial pattern matches (GH-25229)
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r-- | Lib/opcode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py index 196e6f8..37e88e9 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -139,7 +139,7 @@ name_op('STORE_ATTR', 95) # Index in name list name_op('DELETE_ATTR', 96) # "" name_op('STORE_GLOBAL', 97) # "" name_op('DELETE_GLOBAL', 98) # "" - +def_op('ROT_N', 99) def_op('LOAD_CONST', 100) # Index in const list hasconst.append(100) name_op('LOAD_NAME', 101) # Index in name list |