diff options
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/symtablemodule.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Modules/symtablemodule.c b/Modules/symtablemodule.c index f6c378f..c323492 100644 --- a/Modules/symtablemodule.c +++ b/Modules/symtablemodule.c @@ -1,8 +1,7 @@ #include "Python.h" -#include "code.h" #include "Python-ast.h" -#include "symtable.h" +#include "pycore_symtable.h" // struct symtable #include "clinic/symtablemodule.c.h" /*[clinic input] @@ -62,7 +61,7 @@ _symtable_symtable_impl(PyObject *module, PyObject *source, t = (PyObject *)st->st_top; Py_INCREF(t); PyMem_Free((void *)st->st_future); - PySymtable_Free(st); + _PySymtable_Free(st); return t; } |