@@ -2244,7 +2244,6 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
2244
2244
DEOPT_IF (!_PyThreadState_HasStackSpace (tstate , code -> co_framesize ), BINARY_SUBSCR );
2245
2245
Py_INCREF (getitem );
2246
2246
_PyInterpreterFrame * new_frame = _PyFrame_PushUnchecked (tstate , getitem );
2247
- CALL_STAT_INC (frames_pushed );
2248
2247
CALL_STAT_INC (inlined_py_calls );
2249
2248
STACK_SHRINK (2 );
2250
2249
new_frame -> localsplus [0 ] = container ;
@@ -4773,7 +4772,6 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
4773
4772
DEOPT_IF (!_PyThreadState_HasStackSpace (tstate , code -> co_framesize ), CALL );
4774
4773
STAT_INC (CALL , hit );
4775
4774
_PyInterpreterFrame * new_frame = _PyFrame_PushUnchecked (tstate , func );
4776
- CALL_STAT_INC (frames_pushed );
4777
4775
CALL_STAT_INC (inlined_py_calls );
4778
4776
STACK_SHRINK (argcount );
4779
4777
for (int i = 0 ; i < argcount ; i ++ ) {
@@ -4808,7 +4806,6 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
4808
4806
DEOPT_IF (!_PyThreadState_HasStackSpace (tstate , code -> co_framesize ), CALL );
4809
4807
STAT_INC (CALL , hit );
4810
4808
_PyInterpreterFrame * new_frame = _PyFrame_PushUnchecked (tstate , func );
4811
- CALL_STAT_INC (frames_pushed );
4812
4809
CALL_STAT_INC (inlined_py_calls );
4813
4810
STACK_SHRINK (argcount );
4814
4811
for (int i = 0 ; i < argcount ; i ++ ) {
0 commit comments