diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-03-01 02:44:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-01 02:44:13 (GMT) |
commit | f684d83d86e1990784816d4b243d724e6ab8304f (patch) | |
tree | 14d2a51e9bd7751ab89cf21363519d19e3970b28 /PCbuild | |
parent | ab71f8b793f7b42853ccd2a127ae7720adc5bcb4 (diff) | |
download | cpython-f684d83d86e1990784816d4b243d724e6ab8304f.zip cpython-f684d83d86e1990784816d4b243d724e6ab8304f.tar.gz cpython-f684d83d86e1990784816d4b243d724e6ab8304f.tar.bz2 |
bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111)
The whole coreconfig.h header is now excluded from Py_LIMITED_API.
Move functions definitions into a new internal pycore_coreconfig.h
header.
* Move Include/coreconfig.h to Include/cpython/coreconfig.h
* coreconfig.h header is now excluded from Py_LIMITED_API
* Move functions to pycore_coreconfig.h
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 3 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 7 |
2 files changed, 7 insertions, 3 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index b1b9944..1ec5f75 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -110,8 +110,8 @@ <ClInclude Include="..\Include\compile.h" /> <ClInclude Include="..\Include\complexobject.h" /> <ClInclude Include="..\Include\context.h" /> - <ClInclude Include="..\Include\coreconfig.h" /> <ClInclude Include="..\Include\cpython\abstract.h" /> + <ClInclude Include="..\Include\cpython\coreconfig.h" /> <ClInclude Include="..\Include\cpython\dictobject.h" /> <ClInclude Include="..\Include\cpython\object.h" /> <ClInclude Include="..\Include\cpython\objimpl.h" /> @@ -141,6 +141,7 @@ <ClInclude Include="..\Include\internal\pycore_ceval.h" /> <ClInclude Include="..\Include\internal\pycore_condvar.h" /> <ClInclude Include="..\Include\internal\pycore_context.h" /> + <ClInclude Include="..\Include\internal\pycore_coreconfig.h" /> <ClInclude Include="..\Include\internal\pycore_fileutils.h" /> <ClInclude Include="..\Include\internal\pycore_getopt.h" /> <ClInclude Include="..\Include\internal\pycore_gil.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 9dbd066..5053dcf 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -81,10 +81,10 @@ <ClInclude Include="..\Include\context.h"> <Filter>Include</Filter> </ClInclude> - <ClInclude Include="..\Include\coreconfig.h"> + <ClInclude Include="..\Include\cpython\abstract.h"> <Filter>Include</Filter> </ClInclude> - <ClInclude Include="..\Include\cpython\abstract.h"> + <ClInclude Include="..\Include\cpython\coreconfig.h"> <Filter>Include</Filter> </ClInclude> <ClInclude Include="..\Include\cpython\dictobject.h"> @@ -174,6 +174,9 @@ <ClInclude Include="..\Include\internal\pycore_context.h"> <Filter>Include</Filter> </ClInclude> + <ClInclude Include="..\Include\internal\pycore_coreconfig.h"> + <Filter>Include</Filter> + </ClInclude> <ClInclude Include="..\Include\internal\pycore_fileutils.h"> <Filter>Include</Filter> </ClInclude> |