[Python-checkins] r85535 - python/branches/py3k/Objects/codeobject.c

georg.brandl python-checkins at python.org
Fri Oct 15 18:23:54 CEST 2010


Author: georg.brandl
Date: Fri Oct 15 18:23:54 2010
New Revision: 85535

Log:
Remove unused label.

Modified:
   python/branches/py3k/Objects/codeobject.c

Modified: python/branches/py3k/Objects/codeobject.c
==============================================================================
--- python/branches/py3k/Objects/codeobject.c	(original)
+++ python/branches/py3k/Objects/codeobject.c	Fri Oct 15 18:23:54 2010
@@ -111,10 +111,6 @@
         co->co_weakreflist = NULL;
     }
     return co;
-
-error:
-    Py_DECREF(co);
-    return NULL;
 }
 
 PyCodeObject *


More information about the Python-checkins mailing list