diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2022-12-12 15:44:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-12 15:44:23 (GMT) |
commit | 8790d4d31fcd3abaccf31d27f72a8684adfc9dee (patch) | |
tree | 5c1f124cb8c98bed097f002004901ee25ad6fc6a /PCbuild | |
parent | 1583c6e326a8454d3c806763620e1329bf6b7cbe (diff) | |
download | cpython-8790d4d31fcd3abaccf31d27f72a8684adfc9dee.zip cpython-8790d4d31fcd3abaccf31d27f72a8684adfc9dee.tar.gz cpython-8790d4d31fcd3abaccf31d27f72a8684adfc9dee.tar.bz2 |
gh-81057: Move tracemalloc Globals to _PyRuntimeState (gh-100151)
https://github.com/python/cpython/issues/81057
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 35fbff3..25572d6 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -259,6 +259,7 @@ <ClInclude Include="..\Include\internal\pycore_time.h" /> <ClInclude Include="..\Include\internal\pycore_token.h" /> <ClInclude Include="..\Include\internal\pycore_traceback.h" /> + <ClInclude Include="..\Include\internal\pycore_tracemalloc.h" /> <ClInclude Include="..\Include\internal\pycore_tuple.h" /> <ClInclude Include="..\Include\internal\pycore_typeobject.h" /> <ClInclude Include="..\Include\internal\pycore_ucnhash.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 19cb5cf..d45b50c 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -678,6 +678,9 @@ <ClInclude Include="..\Include\internal\pycore_traceback.h"> <Filter>Include\internal</Filter> </ClInclude> + <ClInclude Include="..\Include\internal\pycore_tracemalloc.h"> + <Filter>Include\internal</Filter> + </ClInclude> <ClInclude Include="..\Include\internal\pycore_tuple.h"> <Filter>Include\internal</Filter> </ClInclude> |