bpo-42725: Render annotations effectless on symbol table with PEP 563 (GH-25583)

This commit is contained in:
Batuhan Taskaya 2021-05-03 10:43:00 +03:00 committed by GitHub
parent 37ebdf0a86
commit ad106c68eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 149 additions and 18 deletions

View file

@ -58,7 +58,6 @@ _symtable_symtable_impl(PyObject *module, PyObject *source,
}
t = (PyObject *)st->st_top;
Py_INCREF(t);
PyMem_Free((void *)st->st_future);
_PySymtable_Free(st);
return t;
}