bpo-46430: Intern strings in deep-frozen modules (GH-30683)

This commit is contained in:
Kumar Aditya 2022-02-09 22:22:42 +05:30 committed by GitHub
parent 128ab092ca
commit c0a5ebeb12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 0 deletions

View file

@ -279,6 +279,8 @@ void _Py_Specialize_CompareOp(PyObject *lhs, PyObject *rhs, _Py_CODEUNIT *instr,
/* Deallocator function for static codeobjects used in deepfreeze.py */
void _PyStaticCode_Dealloc(PyCodeObject *co);
/* Function to intern strings of codeobjects */
void _PyStaticCode_InternStrings(PyCodeObject *co);
#ifdef Py_STATS