summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
Diffstat (limited to 'Objects')
-rw-r--r--Objects/codeobject.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Objects/codeobject.c b/Objects/codeobject.c
index e24fc8d..da5c09a 100644
--- a/Objects/codeobject.c
+++ b/Objects/codeobject.c
@@ -111,10 +111,6 @@ PyCode_New(int argcount, int kwonlyargcount,
co->co_weakreflist = NULL;
}
return co;
-
-error:
- Py_DECREF(co);
- return NULL;
}
PyCodeObject *