summaryrefslogtreecommitdiff
path: root/Objects/codeobject.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-15 16:23:54 +0000
committerGeorg Brandl <georg@python.org>2010-10-15 16:23:54 +0000
commit6c6a4d02491124453d305262e53e8e6d71a9158b (patch)
tree58d14854a9478a5d7de6ca785cf1e6a3f4d77f1e /Objects/codeobject.c
parent3ed4114f7d3aa14dafe830e50c569438b4b5afcb (diff)
downloadcpython-git-6c6a4d02491124453d305262e53e8e6d71a9158b.tar.gz
Remove unused label.
Diffstat (limited to 'Objects/codeobject.c')
-rw-r--r--Objects/codeobject.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Objects/codeobject.c b/Objects/codeobject.c
index e24fc8d42b..da5c09ac8d 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 *