diff options
author | Mark Shannon <mark@hotpy.org> | 2023-05-17 13:17:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-17 13:17:16 (GMT) |
commit | f7df17394906f2af51afef3c8ccaaab3847b059c (patch) | |
tree | 834ce84a556cf8ea8159b703bfa2d26149e5d9d8 /PCbuild | |
parent | 26931944dd8abd6554249239344fa62b789b9028 (diff) | |
download | cpython-f7df17394906f2af51afef3c8ccaaab3847b059c.zip cpython-f7df17394906f2af51afef3c8ccaaab3847b059c.tar.gz cpython-f7df17394906f2af51afef3c8ccaaab3847b059c.tar.bz2 |
GH-101520: Move tracemalloc functionality into core, leaving interface in Modules. (#104508)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/_freeze_module.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/_freeze_module.vcxproj.filters | 3 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
4 files changed, 8 insertions, 0 deletions
diff --git a/PCbuild/_freeze_module.vcxproj b/PCbuild/_freeze_module.vcxproj index c9dbe19..3df0a07 100644 --- a/PCbuild/_freeze_module.vcxproj +++ b/PCbuild/_freeze_module.vcxproj @@ -242,6 +242,7 @@ </ClCompile> <ClCompile Include="..\Python\thread.c" /> <ClCompile Include="..\Python\traceback.c" /> + <ClCompile Include="..\Python\tracemalloc.c" /> </ItemGroup> <ItemGroup> <!-- BEGIN frozen modules --> diff --git a/PCbuild/_freeze_module.vcxproj.filters b/PCbuild/_freeze_module.vcxproj.filters index 176935a..d98a4c5 100644 --- a/PCbuild/_freeze_module.vcxproj.filters +++ b/PCbuild/_freeze_module.vcxproj.filters @@ -394,6 +394,9 @@ <ClCompile Include="..\Python\traceback.c"> <Filter>Source Files</Filter> </ClCompile> + <ClCompile Include="..\Python\tracemalloc.c"> + <Filter>Source Files</Filter> + </ClCompile> <ClCompile Include="..\Objects\tupleobject.c"> <Filter>Source Files</Filter> </ClCompile> diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index ca43404..48cd441 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -567,6 +567,7 @@ </ClCompile> <ClCompile Include="..\Python\thread.c" /> <ClCompile Include="..\Python\traceback.c" /> + <ClCompile Include="..\Python\tracemalloc.c" /> </ItemGroup> <ItemGroup> <!-- BEGIN deepfreeze --> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index a3c2e24..5c8c144 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -1268,6 +1268,9 @@ <ClCompile Include="..\Python\traceback.c"> <Filter>Python</Filter> </ClCompile> + <ClCompile Include="..\Python\tracemalloc.c"> + <Filter>Python</Filter> + </ClCompile> <ClCompile Include="..\Python\bootstrap_hash.c"> <Filter>Python</Filter> </ClCompile> |