From 6c6a4d02491124453d305262e53e8e6d71a9158b Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 15 Oct 2010 16:23:54 +0000 Subject: Remove unused label. --- Objects/codeobject.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Objects/codeobject.c') 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 * -- cgit v1.2.1