BINARY_SUBSCR was replaced with BINARY_OP and the NB_SUBSCR oparg in #129700 but there is still some code related to BINARY_SUBSCR that I believe can be removed. Some examples:
|
typedef struct { |
|
_Py_BackoffCounter counter; |
|
} _PyBinarySubscrCache; |
|
|
|
#define INLINE_CACHE_ENTRIES_BINARY_SUBSCR CACHE_ENTRIES(_PyBinarySubscrCache) |
|
"BINARY_SUBSCR": { |
|
"counter": 1, |
|
}, |
Linked PRs
BINARY_SUBSCRwas replaced withBINARY_OPand theNB_SUBSCRoparg in #129700 but there is still some code related toBINARY_SUBSCRthat I believe can be removed. Some examples:cpython/Include/internal/pycore_code.h
Lines 121 to 125 in e82c2ca
cpython/Lib/opcode.py
Lines 66 to 68 in e82c2ca
Linked PRs
BINARY_SUBSCR#131307