diff options
author | Christian Heimes <christian@python.org> | 2021-12-13 21:48:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-13 20:48:46 +0100 |
commit | eb483c46d62707bdf705491f76cf1fa9642fb47e (patch) | |
tree | 27c95eb873672fd8433962ddad5503c3e193924a /Programs/_freeze_module.c | |
parent | a62be77266b1beadd42d4952186332bc0847b7d6 (diff) | |
download | cpython-eb483c46d62707bdf705491f76cf1fa9642fb47e.tar.gz cpython-eb483c46d62707bdf705491f76cf1fa9642fb47e.zip |
bpo-45949: Pure Python freeze module for cross builds (GH-29899)
Diffstat (limited to 'Programs/_freeze_module.c')
-rw-r--r-- | Programs/_freeze_module.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Programs/_freeze_module.c b/Programs/_freeze_module.c index e3f6c11c8b0..d50787666f8 100644 --- a/Programs/_freeze_module.c +++ b/Programs/_freeze_module.c @@ -5,6 +5,8 @@ This is used directly by Tools/scripts/freeze_modules.py, and indirectly by "make regen-frozen". See Python/frozen.c for more info. + + Keep this file in sync with Programs/_freeze_module.py. */ #include <Python.h> |