File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -1938,7 +1938,7 @@ dummy_func(
1938
1938
else {
1939
1939
err = PyObject_IsTrue (cond );
1940
1940
if (err > 0 ) {
1941
- DECREF_INPUTS ( );
1941
+ Py_DECREF ( cond );
1942
1942
}
1943
1943
else if (err == 0 ) {
1944
1944
JUMPBY (oparg );
@@ -1967,7 +1967,7 @@ dummy_func(
1967
1967
jump = true;
1968
1968
}
1969
1969
else if (err == 0 ) {
1970
- DECREF_INPUTS ( );
1970
+ Py_DECREF ( cond );
1971
1971
}
1972
1972
else {
1973
1973
goto error ;
@@ -2100,7 +2100,7 @@ dummy_func(
2100
2100
}
2101
2101
/* iterator ended normally */
2102
2102
assert (next_instr [INLINE_CACHE_ENTRIES_FOR_ITER + oparg ].op .code == END_FOR );
2103
- DECREF_INPUTS ( );
2103
+ Py_DECREF ( iter );
2104
2104
STACK_SHRINK (1 );
2105
2105
/* Jump forward oparg, then skip following END_FOR instruction */
2106
2106
JUMPBY (INLINE_CACHE_ENTRIES_FOR_ITER + oparg + 1 );
@@ -2123,7 +2123,7 @@ dummy_func(
2123
2123
it -> it_seq = NULL ;
2124
2124
Py_DECREF (seq );
2125
2125
}
2126
- DECREF_INPUTS ( );
2126
+ Py_DECREF ( iter );
2127
2127
STACK_SHRINK (1 );
2128
2128
/* Jump forward oparg, then skip following END_FOR instruction */
2129
2129
JUMPBY (INLINE_CACHE_ENTRIES_FOR_ITER + oparg + 1 );
@@ -2146,7 +2146,7 @@ dummy_func(
2146
2146
it -> it_seq = NULL ;
2147
2147
Py_DECREF (seq );
2148
2148
}
2149
- DECREF_INPUTS ( );
2149
+ Py_DECREF ( iter );
2150
2150
STACK_SHRINK (1 );
2151
2151
/* Jump forward oparg, then skip following END_FOR instruction */
2152
2152
JUMPBY (INLINE_CACHE_ENTRIES_FOR_ITER + oparg + 1 );
You can’t perform that action at this time.
0 commit comments