diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2025-01-16 15:22:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-16 15:22:13 (GMT) |
commit | 3893a92d956363fa2443bc5e47d4bae3deddacef (patch) | |
tree | e87b4c94dfa6cc47ba4610d93db82dd15791a2fa /Lib/opcode.py | |
parent | e81fe940c9bd092f6de558fa965100502b78da0f (diff) | |
download | cpython-3893a92d956363fa2443bc5e47d4bae3deddacef.zip cpython-3893a92d956363fa2443bc5e47d4bae3deddacef.tar.gz cpython-3893a92d956363fa2443bc5e47d4bae3deddacef.tar.bz2 |
gh-100239: specialize long tail of binary operations (#128722)
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r-- | Lib/opcode.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py index aba6615..4ee0d64 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -52,6 +52,7 @@ _cache_format = { }, "BINARY_OP": { "counter": 1, + "descr": 4, }, "UNPACK_SEQUENCE": { "counter": 1, |