diff options
| author | Itamar Ostricher <itamarost@gmail.com> | 2022-09-08 08:22:32 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-08 08:22:32 (GMT) |
| commit | 4f523a70543a79a3bbca9bf2ce9abb8fad0aaad2 (patch) | |
| tree | 58552b12a6e4d99d3482632b89daf3cdb81c8c17 /Python | |
| parent | d5e07862ec8b6368c98f649d6c6091b06cdae468 (diff) | |
| download | cpython-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')
| -rw-r--r-- | Python/ceval.c | 1 |
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; |
