Browse Source

Merge 3.2.

pull/2332/head
Stefan Krah 14 years ago
parent
commit
66d1eb23d4
  1. 2
      Python/bltinmodule.c

2
Python/bltinmodule.c

@ -639,6 +639,8 @@ builtin_compile(PyObject *self, PyObject *args, PyObject *kwds)
mod_ty mod;
arena = PyArena_New();
if (arena == NULL)
goto error;
mod = PyAST_obj2mod(cmd, arena, mode);
if (mod == NULL) {
PyArena_Free(arena);

Loading…
Cancel
Save