diff options
author | Mark Shannon <mark@hotpy.org> | 2023-01-11 20:40:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 20:40:43 (GMT) |
commit | 6e4e14d98fe0868981f29701496d57a8223c5407 (patch) | |
tree | d97f9422c02a791511267bf5af45071067d1c848 /Lib/opcode.py | |
parent | 61f12b8ff7073064040ff0e6220150408d24829b (diff) | |
download | cpython-6e4e14d98fe0868981f29701496d57a8223c5407.zip cpython-6e4e14d98fe0868981f29701496d57a8223c5407.tar.gz cpython-6e4e14d98fe0868981f29701496d57a8223c5407.tar.bz2 |
GH-100923: Embed jump mask in `COMPARE_OP` oparg (GH-100924)
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r-- | Lib/opcode.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py index 9ba39e2..414faa3 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -391,7 +391,6 @@ _cache_format = { }, "COMPARE_OP": { "counter": 1, - "mask": 1, }, "BINARY_SUBSCR": { "counter": 1, |