diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2021-09-13 16:18:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-13 16:18:37 -0600 |
commit | a2d8c4b81b8e68e2ffe10945f7ca69174c14e52a (patch) | |
tree | c46c7aead37c0a393f13ef0fb8bb97ea9a9836c6 /Python/frozen_modules/README.txt | |
parent | 1fc41ae8709e20d741bd86c2345173688a5e84b0 (diff) | |
download | cpython-git-a2d8c4b81b8e68e2ffe10945f7ca69174c14e52a.tar.gz |
bpo-45019: Do some cleanup related to frozen modules. (gh-28319)
There are a few things I missed in gh-27980. This is a follow-up that will make subsequent PRs cleaner. It includes fixes to tests and tools that reference the frozen modules.
https://bugs.python.org/issue45019
Diffstat (limited to 'Python/frozen_modules/README.txt')
-rw-r--r-- | Python/frozen_modules/README.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Python/frozen_modules/README.txt b/Python/frozen_modules/README.txt new file mode 100644 index 0000000000..444167cc49 --- /dev/null +++ b/Python/frozen_modules/README.txt @@ -0,0 +1,7 @@ +This directory contains the generated .h files for all the frozen +modules. Python/frozen.c depends on these files. + +Note that, other than the required frozen modules, none of these files +are committed into the repo. + +See Tools/scripts/freeze_modules.py for more info. |