diff options
author | Victor Stinner <vstinner@python.org> | 2023-06-20 06:52:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-20 06:52:40 (GMT) |
commit | cb388c9a85a8dd6817ea7d969f53657002df6272 (patch) | |
tree | 9f7307d840a33aaae2d28643b399bf825a800d5d /PCbuild | |
parent | 03f1a132eeb34c738812161947ef171b21d58c25 (diff) | |
download | cpython-cb388c9a85a8dd6817ea7d969f53657002df6272.zip cpython-cb388c9a85a8dd6817ea7d969f53657002df6272.tar.gz cpython-cb388c9a85a8dd6817ea7d969f53657002df6272.tar.bz2 |
gh-105927: Add _PyWeakref_GET_REF() internal function (#105929)
Add new pycore_weakref.h internal header file.
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 72d869e..a68452a 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -275,6 +275,7 @@ <ClInclude Include="..\Include\internal\pycore_unicodeobject.h" /> <ClInclude Include="..\Include\internal\pycore_unicodeobject_generated.h" /> <ClInclude Include="..\Include\internal\pycore_warnings.h" /> + <ClInclude Include="..\Include\internal\pycore_weakref.h" /> <ClInclude Include="..\Include\interpreteridobject.h" /> <ClInclude Include="..\Include\intrcheck.h" /> <ClInclude Include="..\Include\iterobject.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 5d8b719..bf9b42f 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -492,6 +492,9 @@ <ClInclude Include="..\Include\internal\pycore_warnings.h"> <Filter>Include\internal</Filter> </ClInclude> + <ClInclude Include="..\Include\internal\pycore_weakref.h"> + <Filter>Include\internal</Filter> + </ClInclude> <ClInclude Include="..\Include\internal\pycore_abstract.h"> <Filter>Include\internal</Filter> </ClInclude> |