diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2019-03-15 22:35:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-15 22:35:46 (GMT) |
commit | c11183cdcff6af13c4339fdcce84ab63f7930ddc (patch) | |
tree | 947655550e220dc5ddfd5079fa2a92ebdac9dbef /PCbuild | |
parent | 842a2f07f2f08a935ef470bfdaeef40f87490cfc (diff) | |
download | cpython-c11183cdcff6af13c4339fdcce84ab63f7930ddc.zip cpython-c11183cdcff6af13c4339fdcce84ab63f7930ddc.tar.gz cpython-c11183cdcff6af13c4339fdcce84ab63f7930ddc.tar.bz2 |
bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (gh-12359)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 2 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index bff7b95..c9ff2f8 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -154,6 +154,7 @@ <ClInclude Include="..\Include\internal\pycore_pystate.h" /> <ClInclude Include="..\Include\internal\pycore_tupleobject.h" /> <ClInclude Include="..\Include\internal\pycore_warnings.h" /> + <ClInclude Include="..\Include\interpreteridobject.h" /> <ClInclude Include="..\Include\intrcheck.h" /> <ClInclude Include="..\Include\iterobject.h" /> <ClInclude Include="..\Include\listobject.h" /> @@ -350,6 +351,7 @@ <ClCompile Include="..\Objects\frameobject.c" /> <ClCompile Include="..\Objects\funcobject.c" /> <ClCompile Include="..\Objects\genobject.c" /> + <ClCompile Include="..\Objects\interpreteridobject.c" /> <ClCompile Include="..\Objects\iterobject.c" /> <ClCompile Include="..\Objects\listobject.c" /> <ClCompile Include="..\Objects\longobject.c" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 0303074..5dfa193 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -483,6 +483,9 @@ <ClInclude Include="..\Include\namespaceobject.h"> <Filter>Include</Filter> </ClInclude> + <ClInclude Include="..\Include\interpreteridobject.h"> + <Filter>Include</Filter> + </ClInclude> <ClInclude Include="..\Modules\hashtable.h"> <Filter>Modules</Filter> </ClInclude> @@ -1043,6 +1046,9 @@ <ClCompile Include="..\Objects\namespaceobject.c"> <Filter>Objects</Filter> </ClCompile> + <ClCompile Include="..\Objects\interpreteridobject.c"> + <Filter>Objects</Filter> + </ClCompile> <ClCompile Include="..\Modules\_opcode.c"> <Filter>Modules</Filter> </ClCompile> |