diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2022-11-17 19:36:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-17 19:36:57 (GMT) |
commit | 8555dee5aeedb2f37ee2e2216ef8707be0fc1d9d (patch) | |
tree | 24c7994850152002b8c22a737b875279b5f25e09 /Lib/opcode.py | |
parent | 6f8b0e781ccd5d17f00f91d1c4eddba4f3e9a8ed (diff) | |
download | cpython-8555dee5aeedb2f37ee2e2216ef8707be0fc1d9d.zip cpython-8555dee5aeedb2f37ee2e2216ef8707be0fc1d9d.tar.gz cpython-8555dee5aeedb2f37ee2e2216ef8707be0fc1d9d.tar.bz2 |
GH-98686: Get rid of BINARY_OP_GENERIC and COMPARE_OP_GENERIC (GH-99399)
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r-- | Lib/opcode.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py index 0ee7595..fa6dbe5 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -282,7 +282,6 @@ _specializations = { "BINARY_OP_ADD_FLOAT", "BINARY_OP_ADD_INT", "BINARY_OP_ADD_UNICODE", - "BINARY_OP_GENERIC", "BINARY_OP_INPLACE_ADD_UNICODE", "BINARY_OP_MULTIPLY_FLOAT", "BINARY_OP_MULTIPLY_INT", @@ -316,7 +315,6 @@ _specializations = { ], "COMPARE_OP": [ "COMPARE_OP_FLOAT_JUMP", - "COMPARE_OP_GENERIC", "COMPARE_OP_INT_JUMP", "COMPARE_OP_STR_JUMP", ], |