summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-02-09 16:52:42 (GMT)
committerGitHub <noreply@github.com>2022-02-09 16:52:42 (GMT)
commitc0a5ebeb1239020f2ecc199053bb1a70d78841a1 (patch)
treed22793b254aaab45ddb161502d15796f4918f9aa /Tools
parent128ab092cad984b73a117f58fa0e9b4105051a04 (diff)
downloadcpython-c0a5ebeb1239020f2ecc199053bb1a70d78841a1.zip
cpython-c0a5ebeb1239020f2ecc199053bb1a70d78841a1.tar.gz
cpython-c0a5ebeb1239020f2ecc199053bb1a70d78841a1.tar.bz2
bpo-46430: Intern strings in deep-frozen modules (GH-30683)
Diffstat (limited to 'Tools')
-rw-r--r--Tools/scripts/deepfreeze.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/scripts/deepfreeze.py b/Tools/scripts/deepfreeze.py
index 080980f..0edf3af 100644
--- a/Tools/scripts/deepfreeze.py
+++ b/Tools/scripts/deepfreeze.py
@@ -279,6 +279,7 @@ class Printer:
self.write(f".co_cellvars = {co_cellvars},")
self.write(f".co_freevars = {co_freevars},")
self.deallocs.append(f"_PyStaticCode_Dealloc(&{name});")
+ self.patchups.append(f"_PyStaticCode_InternStrings(&{name});")
return f"& {name}.ob_base"
def generate_tuple(self, name: str, t: Tuple[object, ...]) -> str: