summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorItamar Ostricher <itamarost@gmail.com>2022-09-08 08:22:32 (GMT)
committerGitHub <noreply@github.com>2022-09-08 08:22:32 (GMT)
commit4f523a70543a79a3bbca9bf2ce9abb8fad0aaad2 (patch)
tree58552b12a6e4d99d3482632b89daf3cdb81c8c17 /Python/ceval.c
parentd5e07862ec8b6368c98f649d6c6091b06cdae468 (diff)
downloadcpython-4f523a70543a79a3bbca9bf2ce9abb8fad0aaad2.zip
cpython-4f523a70543a79a3bbca9bf2ce9abb8fad0aaad2.tar.gz
cpython-4f523a70543a79a3bbca9bf2ce9abb8fad0aaad2.tar.bz2
gh-96653: Remove duplicate CALL_STAT_INC(inlined_py_calls) in BINARY_SUBSCR_GETITEM (GH-96654)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index af47e09..41320e9 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -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;