summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 08fc27f..5519ac7 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -4153,9 +4153,9 @@ _PyEval_EvalCodeWithName(PyObject *_co, PyObject *globals, PyObject *locals,
gen = PyGen_NewWithQualName(f, name, qualname);
}
if (gen == NULL) {
- Py_DECREF(f);
return NULL;
}
+
_PyObject_GC_TRACK(f);
if (is_coro && coro_wrapper != NULL) {