From: Georg Brandl Date: Fri, 15 Oct 2010 16:23:54 +0000 (+0000) Subject: Remove unused label. X-Git-Tag: v3.2a4~556 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6c6a4d02491124453d305262e53e8e6d71a9158b;p=thirdparty%2FPython%2Fcpython.git Remove unused label. --- diff --git a/Objects/codeobject.c b/Objects/codeobject.c index e24fc8d42b1c..da5c09ac8d27 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 *