]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove unused label.
authorGeorg Brandl <georg@python.org>
Fri, 15 Oct 2010 16:23:54 +0000 (16:23 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 15 Oct 2010 16:23:54 +0000 (16:23 +0000)
Objects/codeobject.c

index e24fc8d42b1c2fa5a84a571eed67e62a59b66860..da5c09ac8d276a52eb4be87ba85f276b341d83e8 100644 (file)
@@ -111,10 +111,6 @@ PyCode_New(int argcount, int kwonlyargcount,
         co->co_weakreflist = NULL;
     }
     return co;
-
-error:
-    Py_DECREF(co);
-    return NULL;
 }
 
 PyCodeObject *