Skip to content

Commit e73b69f

Browse files
fix isinstance bug
1 parent 617424b commit e73b69f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4851,7 +4851,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, InterpreterFrame *frame, int thr
48514851
Py_DECREF(POP());
48524852
Py_DECREF(POP());
48534853
Py_DECREF(callable);
4854-
STAT_INC(CALL_FUNCTION, hit);
4854+
SET_TOP(res);
48554855
if (res == NULL) {
48564856
goto error;
48574857
}

0 commit comments

Comments
 (0)