diff options
author | Hai Shi <shihai1992@gmail.com> | 2021-03-22 08:32:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 08:32:11 (GMT) |
commit | 56f031ec5281723b7c617edfa5748f2ae6a4c347 (patch) | |
tree | a73d3c8ab647b305f47e1da543755776b9133f44 /PCbuild | |
parent | 690aca781152a498f5117682524d2cd9aa4d7657 (diff) | |
download | cpython-56f031ec5281723b7c617edfa5748f2ae6a4c347.zip cpython-56f031ec5281723b7c617edfa5748f2ae6a4c347.tar.gz cpython-56f031ec5281723b7c617edfa5748f2ae6a4c347.tar.bz2 |
bpo-35134: Add include/cpython/compile.h (GH-24922)
Move C API excluded from the limited C API from Include/compile.h
to a new Include/cpython/compile.h 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 bab711e..53b9d72 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -131,6 +131,7 @@ <ClInclude Include="..\Include\cpython\bytesobject.h" /> <ClInclude Include="..\Include\cpython\ceval.h" /> <ClInclude Include="..\Include\cpython\code.h" /> + <ClInclude Include="..\Include\cpython\compile.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 1f51715..a4f82a1 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -393,6 +393,9 @@ <ClInclude Include="..\Include\cpython\code.h"> <Filter>Include\cpython</Filter> </ClInclude> + <ClInclude Include="..\Include\cpython\compile.h"> + <Filter>Include</Filter> + </ClInclude> <ClInclude Include="..\Include\cpython\dictobject.h"> <Filter>Include\cpython</Filter> </ClInclude> |