summaryrefslogtreecommitdiffstats
path: root/Lib/opcode.py
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2022-11-17 19:36:57 (GMT)
committerGitHub <noreply@github.com>2022-11-17 19:36:57 (GMT)
commit8555dee5aeedb2f37ee2e2216ef8707be0fc1d9d (patch)
tree24c7994850152002b8c22a737b875279b5f25e09 /Lib/opcode.py
parent6f8b0e781ccd5d17f00f91d1c4eddba4f3e9a8ed (diff)
downloadcpython-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.py2
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",
],