Skip to content

Commit

Permalink
Revert "fFx refleak in isinstance error path (GH-31005)"
Browse files Browse the repository at this point in the history
This reverts commit 8fb3649.
  • Loading branch information
pablogsal authored and ambv committed Jan 31, 2022
1 parent 286bc37 commit ada2b00
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Python/ceval.c
Original file line number Diff line number Diff line change
Expand Up @@ -4826,7 +4826,6 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, InterpreterFrame *frame, int thr

int retval = PyObject_IsInstance(SECOND(), TOP());
if (retval < 0) {
Py_DECREF(cls);
goto error;
}
PyObject *res = PyBool_FromLong(retval);
Expand Down

0 comments on commit ada2b00

Please sign in to comment.