diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-15 07:46:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 07:46:29 (GMT) |
commit | 8e5de40f90476249e9a2e5ef135143b5c6a0b512 (patch) | |
tree | 4a4442049bd006be2760d8456c4bb6837f5d1db8 /PCbuild/pythoncore.vcxproj | |
parent | 9ce9cfe595d64e3081e69de7296042cc54bccf18 (diff) | |
download | cpython-8e5de40f90476249e9a2e5ef135143b5c6a0b512.zip cpython-8e5de40f90476249e9a2e5ef135143b5c6a0b512.tar.gz cpython-8e5de40f90476249e9a2e5ef135143b5c6a0b512.tar.bz2 |
bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)
Move classobject.h, context.h, genobject.h and longintrepr.h header
files from Include/ to Include/cpython/.
Remove redundant "#ifndef Py_LIMITED_API" in context.h.
Remove explicit #include "longintrepr.h" in C files. It's not needed,
Python.h already includes it.
Diffstat (limited to 'PCbuild/pythoncore.vcxproj')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 877064e..0b0ff45 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -116,29 +116,31 @@ <ClInclude Include="..\Include\bytearrayobject.h" /> <ClInclude Include="..\Include\bytesobject.h" /> <ClInclude Include="..\Include\ceval.h" /> - <ClInclude Include="..\Include\classobject.h" /> <ClInclude Include="..\Include\code.h" /> <ClInclude Include="..\Include\codecs.h" /> <ClInclude Include="..\Include\compile.h" /> <ClInclude Include="..\Include\complexobject.h" /> - <ClInclude Include="..\Include\context.h" /> <ClInclude Include="..\Include\cpython\abstract.h" /> <ClInclude Include="..\Include\cpython\bytearrayobject.h" /> <ClInclude Include="..\Include\cpython\bytesobject.h" /> <ClInclude Include="..\Include\cpython\cellobject.h" /> <ClInclude Include="..\Include\cpython\ceval.h" /> + <ClInclude Include="..\Include\cpython\classobject.h" /> <ClInclude Include="..\Include\cpython\code.h" /> <ClInclude Include="..\Include\cpython\compile.h" /> + <ClInclude Include="..\Include\cpython\context.h" /> <ClInclude Include="..\Include\cpython\dictobject.h" /> <ClInclude Include="..\Include\cpython\fileobject.h" /> <ClInclude Include="..\Include\cpython\fileutils.h" /> <ClInclude Include="..\Include\cpython\floatobject.h" /> <ClInclude Include="..\Include\cpython\frameobject.h" /> <ClInclude Include="..\Include\cpython\funcobject.h" /> + <ClInclude Include="..\Include\cpython\genobject.h" /> <ClInclude Include="..\Include\cpython\import.h" /> <ClInclude Include="..\Include\cpython\initconfig.h" /> <ClInclude Include="..\Include\cpython\interpreteridobject.h" /> <ClInclude Include="..\Include\cpython\listobject.h" /> + <ClInclude Include="..\Include\cpython\longintrepr.h" /> <ClInclude Include="..\Include\cpython\methodobject.h" /> <ClInclude Include="..\Include\cpython\object.h" /> <ClInclude Include="..\Include\cpython\objimpl.h" /> @@ -170,7 +172,6 @@ <ClInclude Include="..\Include\fileutils.h" /> <ClInclude Include="..\Include\floatobject.h" /> <ClInclude Include="..\Include\frameobject.h" /> - <ClInclude Include="..\Include\genobject.h" /> <ClInclude Include="..\Include\import.h" /> <ClInclude Include="..\Include\internal\pycore_abstract.h" /> <ClInclude Include="..\Include\internal\pycore_accu.h" /> @@ -224,7 +225,6 @@ <ClInclude Include="..\Include\intrcheck.h" /> <ClInclude Include="..\Include\iterobject.h" /> <ClInclude Include="..\Include\listobject.h" /> - <ClInclude Include="..\Include\longintrepr.h" /> <ClInclude Include="..\Include\longobject.h" /> <ClInclude Include="..\Include\marshal.h" /> <ClInclude Include="..\Include\memoryobject.h" /> |