summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2021-09-17 22:31:31 (GMT)
committerGitHub <noreply@github.com>2021-09-17 22:31:31 (GMT)
commit090591636c4f03ce06a039079bd7716a5b23631e (patch)
tree09de3850118af9103e697ad3f2eb514e0b4fb2a4 /PCbuild
parent74cc2453ae690be940cddfae8caf8216d8628c4a (diff)
downloadcpython-090591636c4f03ce06a039079bd7716a5b23631e.zip
cpython-090591636c4f03ce06a039079bd7716a5b23631e.tar.gz
cpython-090591636c4f03ce06a039079bd7716a5b23631e.tar.bz2
bpo-45020: Freeze os, site, and codecs. (gh-28398)
https://bugs.python.org/issue45020
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/_freeze_module.vcxproj15
-rw-r--r--PCbuild/_freeze_module.vcxproj.filters9
2 files changed, 24 insertions, 0 deletions
diff --git a/PCbuild/_freeze_module.vcxproj b/PCbuild/_freeze_module.vcxproj
index ef0069c..382351c 100644
--- a/PCbuild/_freeze_module.vcxproj
+++ b/PCbuild/_freeze_module.vcxproj
@@ -250,6 +250,11 @@
<IntFile>$(IntDir)abc.g.h</IntFile>
<OutFile>$(PySourcePath)Python\frozen_modules\abc.h</OutFile>
</None>
+ <None Include="..\Lib\codecs.py">
+ <ModName>codecs</ModName>
+ <IntFile>$(IntDir)codecs.g.h</IntFile>
+ <OutFile>$(PySourcePath)Python\frozen_modules\codecs.h</OutFile>
+ </None>
<None Include="..\Lib\io.py">
<ModName>io</ModName>
<IntFile>$(IntDir)io.g.h</IntFile>
@@ -280,6 +285,16 @@
<IntFile>$(IntDir)posixpath.g.h</IntFile>
<OutFile>$(PySourcePath)Python\frozen_modules\posixpath.h</OutFile>
</None>
+ <None Include="..\Lib\os.py">
+ <ModName>os</ModName>
+ <IntFile>$(IntDir)os.g.h</IntFile>
+ <OutFile>$(PySourcePath)Python\frozen_modules\os.h</OutFile>
+ </None>
+ <None Include="..\Lib\site.py">
+ <ModName>site</ModName>
+ <IntFile>$(IntDir)site.g.h</IntFile>
+ <OutFile>$(PySourcePath)Python\frozen_modules\site.h</OutFile>
+ </None>
<None Include="..\Lib\stat.py">
<ModName>stat</ModName>
<IntFile>$(IntDir)stat.g.h</IntFile>
diff --git a/PCbuild/_freeze_module.vcxproj.filters b/PCbuild/_freeze_module.vcxproj.filters
index 71fb41c..4a1c90f 100644
--- a/PCbuild/_freeze_module.vcxproj.filters
+++ b/PCbuild/_freeze_module.vcxproj.filters
@@ -28,6 +28,9 @@
<None Include="..\Lib\abc.py">
<Filter>Python Files</Filter>
</None>
+ <None Include="..\Lib\codecs.py">
+ <Filter>Python Files</Filter>
+ </None>
<None Include="..\Lib\io.py">
<Filter>Python Files</Filter>
</None>
@@ -46,6 +49,12 @@
<None Include="..\Lib\posixpath.py">
<Filter>Python Files</Filter>
</None>
+ <None Include="..\Lib\os.py">
+ <Filter>Python Files</Filter>
+ </None>
+ <None Include="..\Lib\site.py">
+ <Filter>Python Files</Filter>
+ </None>
<None Include="..\Lib\stat.py">
<Filter>Python Files</Filter>
</None>