diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2024-04-24 16:18:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-24 16:18:24 (GMT) |
commit | 03e3e317231d67557191ee067cb7f192f3d4d092 (patch) | |
tree | 613288cb7be97b91ef960d68dcccd2ac741d451c /PCbuild | |
parent | af3c1d817d3f8369f8003965d967332a3a721a25 (diff) | |
download | cpython-03e3e317231d67557191ee067cb7f192f3d4d092.zip cpython-03e3e317231d67557191ee067cb7f192f3d4d092.tar.gz cpython-03e3e317231d67557191ee067cb7f192f3d4d092.tar.bz2 |
gh-76785: Rename _xxsubinterpreters to _interpreters (gh-117791)
See https://discuss.python.org/t/pep-734-multiple-interpreters-in-the-stdlib/41147/26.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 6 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 3a019a5..25d5294 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -465,9 +465,9 @@ <ClCompile Include="..\Modules\_typingmodule.c" /> <ClCompile Include="..\Modules\timemodule.c" /> <ClCompile Include="..\Modules\xxsubtype.c" /> - <ClCompile Include="..\Modules\_xxsubinterpretersmodule.c" /> - <ClCompile Include="..\Modules\_xxinterpchannelsmodule.c" /> - <ClCompile Include="..\Modules\_xxinterpqueuesmodule.c" /> + <ClCompile Include="..\Modules\_interpretersmodule.c" /> + <ClCompile Include="..\Modules\_interpchannelsmodule.c" /> + <ClCompile Include="..\Modules\_interpqueuesmodule.c" /> <ClCompile Include="..\Modules\_io\fileio.c" /> <ClCompile Include="..\Modules\_io\bytesio.c" /> <ClCompile Include="..\Modules\_io\stringio.c" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index e439704..4b1f9aa 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -1547,13 +1547,13 @@ <ClCompile Include="..\Parser\peg_api.c"> <Filter>Parser</Filter> </ClCompile> - <ClCompile Include="..\Modules\_xxsubinterpretersmodule.c"> + <ClCompile Include="..\Modules\_interpretersmodule.c"> <Filter>Modules</Filter> </ClCompile> - <ClCompile Include="..\Modules\_xxinterpchannelsmodule.c"> + <ClCompile Include="..\Modules\_interpchannelsmodule.c"> <Filter>Modules</Filter> </ClCompile> - <ClCompile Include="..\Modules\_xxinterpqueuesmodule.c"> + <ClCompile Include="..\Modules\_interpqueuesmodule.c"> <Filter>Modules</Filter> </ClCompile> <ClCompile Include="..\Parser\string_parser.c"> |