diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2021-09-16 05:27:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-16 05:27:38 (GMT) |
commit | 9fd87a5fe5c468cf94265365091267838b004b7f (patch) | |
tree | 79cf26f39a77c83e52ac61491fe279c83a52ef35 /.gitignore | |
parent | 07e737d002cdbf0bfee53248a652a86c9f93f02b (diff) | |
download | cpython-9fd87a5fe5c468cf94265365091267838b004b7f.zip cpython-9fd87a5fe5c468cf94265365091267838b004b7f.tar.gz cpython-9fd87a5fe5c468cf94265365091267838b004b7f.tar.bz2 |
bpo-45020: Revert "Drop the frozen .h files from the repo." (gh-28380)
gh-28375 broke one of the buildbots. Until I figure out why, I'm rolling the change back.
https://bugs.python.org/issue45020
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -121,8 +121,12 @@ Tools/msi/obj Tools/ssl/amd64 Tools/ssl/win32 -# The frozen modules are always generated at build time. -Python/frozen_modules/*.h +# TODO: Once we auto-regen frozem modules for Windows builds +# we can drop the .h files from the repo and ignore them here. +# At that point we will rely the frozen manifest file to identify +# changed generated files. We'll drop the entry for it then. +# See: Tools/scripts/freeze_modules.py. +#Python/frozen_modules/*.h # The manifest can be generated at any time with "make regen-frozen". Python/frozen_modules/MANIFEST |