mirror of
https://github.com/python/cpython.git
synced 2025-08-28 20:56:54 +00:00
Fix assertions.
This commit is contained in:
parent
c2e20744b2
commit
bfe51ea5c8
1 changed files with 3 additions and 3 deletions
|
@ -257,11 +257,11 @@ PyAST_Compile(mod_ty mod, const char *filename, PyCompilerFlags *flags,
|
||||||
if (!__doc__) {
|
if (!__doc__) {
|
||||||
__doc__ = PyString_InternFromString("__doc__");
|
__doc__ = PyString_InternFromString("__doc__");
|
||||||
if (!__doc__)
|
if (!__doc__)
|
||||||
goto error;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!compiler_init(&c))
|
if (!compiler_init(&c))
|
||||||
goto error;
|
return NULL;
|
||||||
c.c_filename = filename;
|
c.c_filename = filename;
|
||||||
c.c_arena = arena;
|
c.c_arena = arena;
|
||||||
c.c_future = PyFuture_FromAST(mod, filename);
|
c.c_future = PyFuture_FromAST(mod, filename);
|
||||||
|
@ -291,7 +291,7 @@ PyAST_Compile(mod_ty mod, const char *filename, PyCompilerFlags *flags,
|
||||||
|
|
||||||
error:
|
error:
|
||||||
compiler_free(&c);
|
compiler_free(&c);
|
||||||
assert(!PyErr_Occurred());
|
assert(co || PyErr_Occurred());
|
||||||
return co;
|
return co;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue