c.c_arena = arena;
c.c_future = PyFuture_FromAST(mod, filename);
if (c.c_future == NULL)
- goto error;
+ goto finally;
if (!flags) {
local_flags.cf_flags = 0;
flags = &local_flags;
if (c.c_st == NULL) {
if (!PyErr_Occurred())
PyErr_SetString(PyExc_SystemError, "no symtable");
- goto error;
+ goto finally;
}
/* XXX initialize to NULL for now, need to handle */
co = compiler_mod(&c, mod);
- error:
+ finally:
compiler_free(&c);
assert(co || PyErr_Occurred());
return co;