diff options
author | Georg Brandl <georg@python.org> | 2010-10-15 16:23:54 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-15 16:23:54 (GMT) |
commit | 6c6a4d02491124453d305262e53e8e6d71a9158b (patch) | |
tree | 58d14854a9478a5d7de6ca785cf1e6a3f4d77f1e | |
parent | 3ed4114f7d3aa14dafe830e50c569438b4b5afcb (diff) | |
download | cpython-6c6a4d02491124453d305262e53e8e6d71a9158b.zip cpython-6c6a4d02491124453d305262e53e8e6d71a9158b.tar.gz cpython-6c6a4d02491124453d305262e53e8e6d71a9158b.tar.bz2 |
Remove unused label.
-rw-r--r-- | Objects/codeobject.c | 4 |
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 * |