summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Python/frame.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/frame.c b/Python/frame.c
index 2865b2e..ddf6ef6 100644
--- a/Python/frame.c
+++ b/Python/frame.c
@@ -139,7 +139,6 @@ _PyFrame_ClearExceptCode(_PyInterpreterFrame *frame)
for (int i = 0; i < frame->stacktop; i++) {
Py_XDECREF(frame->localsplus[i]);
}
- Py_XDECREF(frame->frame_obj);
Py_XDECREF(frame->f_locals);
Py_DECREF(frame->f_funcobj);
}