From 4f523a70543a79a3bbca9bf2ce9abb8fad0aaad2 Mon Sep 17 00:00:00 2001 From: Itamar Ostricher Date: Thu, 8 Sep 2022 01:22:32 -0700 Subject: gh-96653: Remove duplicate CALL_STAT_INC(inlined_py_calls) in BINARY_SUBSCR_GETITEM (GH-96654) --- Python/ceval.c | 1 - 1 file changed, 1 deletion(-) 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; -- cgit v0.12