Remove unused label.

This commit is contained in:
Georg Brandl 2010-10-15 16:23:54 +00:00
parent 3ed4114f7d
commit 6c6a4d0249

View file

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