Skip to content

Commit 4f523a7

Browse files
authored
gh-96653: Remove duplicate CALL_STAT_INC(inlined_py_calls) in BINARY_SUBSCR_GETITEM (GH-96654)
1 parent d5e0786 commit 4f523a7

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Python/ceval.c

-1
Original file line numberDiff line numberDiff line change
@@ -1659,7 +1659,6 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
16591659
STAT_INC(BINARY_SUBSCR, hit);
16601660
Py_INCREF(getitem);
16611661
_PyInterpreterFrame *new_frame = _PyFrame_PushUnchecked(tstate, getitem);
1662-
CALL_STAT_INC(inlined_py_calls);
16631662
STACK_SHRINK(2);
16641663
new_frame->localsplus[0] = container;
16651664
new_frame->localsplus[1] = sub;

0 commit comments

Comments
 (0)