diff options
author | Christian Heimes <christian@python.org> | 2021-12-10 18:09:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-10 18:09:09 (GMT) |
commit | 16638a4bdb802ae52d386a39d2dbef14de3fbc92 (patch) | |
tree | 2e1182e7d23fc5c59327fc9b4cd938fd491b49b2 /PCbuild | |
parent | 3f398a77d37b5dfd51dabbc362d482a482fa885a (diff) | |
download | cpython-16638a4bdb802ae52d386a39d2dbef14de3fbc92.zip cpython-16638a4bdb802ae52d386a39d2dbef14de3fbc92.tar.gz cpython-16638a4bdb802ae52d386a39d2dbef14de3fbc92.tar.bz2 |
bpo-45654: No need to freeze types (GH-30028)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/_freeze_module.vcxproj | 7 | ||||
-rw-r--r-- | PCbuild/_freeze_module.vcxproj.filters | 3 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 |
3 files changed, 0 insertions, 11 deletions
diff --git a/PCbuild/_freeze_module.vcxproj b/PCbuild/_freeze_module.vcxproj index 2beb425..11a6a87 100644 --- a/PCbuild/_freeze_module.vcxproj +++ b/PCbuild/_freeze_module.vcxproj @@ -332,13 +332,6 @@ <DeepIntFile>$(IntDir)stat.g.c</DeepIntFile> <DeepOutFile>$(PySourcePath)Python\deepfreeze\df.stat.c</DeepOutFile> </None> - <None Include="..\Lib\types.py"> - <ModName>types</ModName> - <IntFile>$(IntDir)types.g.h</IntFile> - <OutFile>$(PySourcePath)Python\frozen_modules\types.h</OutFile> - <DeepIntFile>$(IntDir)types.g.c</DeepIntFile> - <DeepOutFile>$(PySourcePath)Python\deepfreeze\df.types.c</DeepOutFile> - </None> <None Include="..\Lib\importlib\util.py"> <ModName>importlib.util</ModName> <IntFile>$(IntDir)importlib.util.g.h</IntFile> diff --git a/PCbuild/_freeze_module.vcxproj.filters b/PCbuild/_freeze_module.vcxproj.filters index 7690e5e..d107849 100644 --- a/PCbuild/_freeze_module.vcxproj.filters +++ b/PCbuild/_freeze_module.vcxproj.filters @@ -447,9 +447,6 @@ <None Include="..\Lib\stat.py"> <Filter>Python Files</Filter> </None> - <None Include="..\Lib\types.py"> - <Filter>Python Files</Filter> - </None> <None Include="..\Lib\importlib\util.py"> <Filter>Python Files</Filter> </None> diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 33abfaf..098cc21 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -541,7 +541,6 @@ <ClCompile Include="..\Python\deepfreeze\df.os.c" /> <ClCompile Include="..\Python\deepfreeze\df.site.c" /> <ClCompile Include="..\Python\deepfreeze\df.stat.c" /> - <ClCompile Include="..\Python\deepfreeze\df.types.c" /> <ClCompile Include="..\Python\deepfreeze\df.importlib.util.c" /> <ClCompile Include="..\Python\deepfreeze\df.importlib.machinery.c" /> <ClCompile Include="..\Python\deepfreeze\df.runpy.c" /> |