diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-07-07 20:04:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-07 20:04:05 (GMT) |
commit | 71697664d71e09dcf34aac41f6c100350efc3726 (patch) | |
tree | 0cc70a75e084200f610947dfd8209badc48e17f7 /Tools | |
parent | afd6a37ad159cf7cc632ee4680cd50cef0ceb006 (diff) | |
download | cpython-71697664d71e09dcf34aac41f6c100350efc3726.zip cpython-71697664d71e09dcf34aac41f6c100350efc3726.tar.gz cpython-71697664d71e09dcf34aac41f6c100350efc3726.tar.bz2 |
GH-90699: Move generated static initializer to pycore_runtime_generated.h (GH-94051)
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/scripts/generate_global_objects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/generate_global_objects.py b/Tools/scripts/generate_global_objects.py index 2180acd..c26491b 100644 --- a/Tools/scripts/generate_global_objects.py +++ b/Tools/scripts/generate_global_objects.py @@ -237,7 +237,7 @@ def generate_runtime_init(identifiers, strings): assert nsmallposints and nsmallnegints # Then target the runtime initializer. - filename = os.path.join(INTERNAL, 'pycore_runtime_init.h') + filename = os.path.join(INTERNAL, 'pycore_runtime_init_generated.h') # Read the non-generated part of the file. with open(filename) as infile: |