-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
Closed
Labels
interpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)type-featureA feature request or enhancementA feature request or enhancement
Description
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:
cpython/Include/internal/pycore_code.h
Lines 121 to 125 in e82c2ca
typedef struct { | |
_Py_BackoffCounter counter; | |
} _PyBinarySubscrCache; | |
#define INLINE_CACHE_ENTRIES_BINARY_SUBSCR CACHE_ENTRIES(_PyBinarySubscrCache) |
Lines 66 to 68 in e82c2ca
"BINARY_SUBSCR": { | |
"counter": 1, | |
}, |
Linked PRs
Metadata
Metadata
Assignees
Labels
interpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)type-featureA feature request or enhancementA feature request or enhancement