diff options
author | Victor Stinner <vstinner@python.org> | 2022-01-26 16:32:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-26 16:32:47 (GMT) |
commit | d4a85f104bf9d2e368f25c9a567eaaa2cc39a96a (patch) | |
tree | 6683db789d0c867d8775e59b876b08e79230b705 /PCbuild | |
parent | 3eb3b4f270757f66c7fb6dcf5afa416ee1582a4b (diff) | |
download | cpython-d4a85f104bf9d2e368f25c9a567eaaa2cc39a96a.zip cpython-d4a85f104bf9d2e368f25c9a567eaaa2cc39a96a.tar.gz cpython-d4a85f104bf9d2e368f25c9a567eaaa2cc39a96a.tar.bz2 |
bpo-35134: Add Include/cpython/descrobject.h (GH-30923)
Move Include/descrobject.h non-limited API to a new
Include/cpython/descrobject.h header file.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index fd1ab83..8f9c4fe 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -142,6 +142,7 @@ <ClInclude Include="..\Include\cpython\code.h" /> <ClInclude Include="..\Include\cpython\compile.h" /> <ClInclude Include="..\Include\cpython\context.h" /> + <ClInclude Include="..\Include\cpython\descrobject.h" /> <ClInclude Include="..\Include\cpython\dictobject.h" /> <ClInclude Include="..\Include\cpython\fileobject.h" /> <ClInclude Include="..\Include\cpython\fileutils.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 4a50207..dc3b554 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -366,6 +366,9 @@ <ClInclude Include="..\Include\cpython\context.h"> <Filter>Include\cpython</Filter> </ClInclude> + <ClInclude Include="..\Include\cpython\descrobject.h"> + <Filter>Include\cpython</Filter> + </ClInclude> <ClInclude Include="..\Include\cpython\dictobject.h"> <Filter>Include\cpython</Filter> </ClInclude> @@ -1274,4 +1277,4 @@ <Filter>Resource Files</Filter> </ResourceCompile> </ItemGroup> -</Project>
\ No newline at end of file +</Project> |