]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-96653: Remove duplicate CALL_STAT_INC(inlined_py_calls) in BINARY_SUBSCR_GETITEM...
authorItamar Ostricher <itamarost@gmail.com>
Thu, 8 Sep 2022 08:22:32 +0000 (01:22 -0700)
committerGitHub <noreply@github.com>
Thu, 8 Sep 2022 08:22:32 +0000 (16:22 +0800)
Python/ceval.c

index af47e091bc7f0b0d007c1866f82ec2259d3d797a..41320e9239c8912cacb684f6d579fc857aa3b792 100644 (file)
@@ -1659,7 +1659,6 @@ handle_eval_breaker:
             STAT_INC(BINARY_SUBSCR, hit);
             Py_INCREF(getitem);
             _PyInterpreterFrame *new_frame = _PyFrame_PushUnchecked(tstate, getitem);
-            CALL_STAT_INC(inlined_py_calls);
             STACK_SHRINK(2);
             new_frame->localsplus[0] = container;
             new_frame->localsplus[1] = sub;