diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-13 10:47:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-13 10:47:17 (GMT) |
commit | 0c13e1f96a9487e0efe63c3d3a05ff9738bd7dac (patch) | |
tree | 64aa99711d126cb0b94aff8c59ad40bb7ffba8d1 /PCbuild | |
parent | 1c4cbdf94dbb4a6ac1093d2fa7a75efa802b25bc (diff) | |
download | cpython-0c13e1f96a9487e0efe63c3d3a05ff9738bd7dac.zip cpython-0c13e1f96a9487e0efe63c3d3a05ff9738bd7dac.tar.gz cpython-0c13e1f96a9487e0efe63c3d3a05ff9738bd7dac.tar.bz2 |
bpo-40241: Add pycore_interp.h header (GH-19499)
Move PyInterpreterState and related functions to a new internal
pycore_interp.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 df0eb3a..c35499e 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -177,6 +177,7 @@ <ClInclude Include="..\Include\internal\pycore_hamt.h" /> <ClInclude Include="..\Include\internal\pycore_import.h" /> <ClInclude Include="..\Include\internal\pycore_initconfig.h" /> + <ClInclude Include="..\Include\internal\pycore_interp.h" /> <ClInclude Include="..\Include\internal\pycore_object.h" /> <ClInclude Include="..\Include\internal\pycore_pathconfig.h" /> <ClInclude Include="..\Include\internal\pycore_pyerrors.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 8c605c8..c04df27 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -234,6 +234,9 @@ <ClInclude Include="..\Include\internal\pycore_initconfig.h"> <Filter>Include</Filter> </ClInclude> + <ClInclude Include="..\Include\internal\pycore_interp.h"> + <Filter>Include</Filter> + </ClInclude> <ClInclude Include="..\Include\internal\pycore_object.h"> <Filter>Include</Filter> </ClInclude> |