diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-02-09 16:52:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-09 16:52:42 (GMT) |
commit | c0a5ebeb1239020f2ecc199053bb1a70d78841a1 (patch) | |
tree | d22793b254aaab45ddb161502d15796f4918f9aa /Include/internal/pycore_code.h | |
parent | 128ab092cad984b73a117f58fa0e9b4105051a04 (diff) | |
download | cpython-c0a5ebeb1239020f2ecc199053bb1a70d78841a1.zip cpython-c0a5ebeb1239020f2ecc199053bb1a70d78841a1.tar.gz cpython-c0a5ebeb1239020f2ecc199053bb1a70d78841a1.tar.bz2 |
bpo-46430: Intern strings in deep-frozen modules (GH-30683)
Diffstat (limited to 'Include/internal/pycore_code.h')
-rw-r--r-- | Include/internal/pycore_code.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/internal/pycore_code.h b/Include/internal/pycore_code.h index 3897ea0..2d8fe20 100644 --- a/Include/internal/pycore_code.h +++ b/Include/internal/pycore_code.h @@ -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 |