[Python-checkins] bpo-35642: Remove asynciomodule.c from pythoncore.vcxproj (GH-11410)

Steve Dower webhook-mailer at python.org
Mon Jan 7 20:27:22 EST 2019


https://github.com/python/cpython/commit/fbf50683b3a2301097d5cd48bc68b530c1e1720f
commit: fbf50683b3a2301097d5cd48bc68b530c1e1720f
branch: master
author: Gregory Szorc <gregory.szorc at gmail.com>
committer: Steve Dower <steve.dower at microsoft.com>
date: 2019-01-07T17:27:18-08:00
summary:

bpo-35642: Remove asynciomodule.c from pythoncore.vcxproj (GH-11410)

This module is built by _asyncio.vcxproj and does not need to be included in pythoncore.

files:
A Misc/NEWS.d/next/Build/2019-01-02-11-23-33.bpo-35642.pjkhJe.rst
M PCbuild/pythoncore.vcxproj
M PCbuild/pythoncore.vcxproj.filters

diff --git a/Misc/NEWS.d/next/Build/2019-01-02-11-23-33.bpo-35642.pjkhJe.rst b/Misc/NEWS.d/next/Build/2019-01-02-11-23-33.bpo-35642.pjkhJe.rst
new file mode 100644
index 000000000000..9f6da315e2d5
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2019-01-02-11-23-33.bpo-35642.pjkhJe.rst
@@ -0,0 +1 @@
+Remove asynciomodule.c from pythoncore.vcxproj
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj
index ddf7f49d7a8e..f33cdb503038 100644
--- a/PCbuild/pythoncore.vcxproj
+++ b/PCbuild/pythoncore.vcxproj
@@ -247,7 +247,6 @@
   </ItemGroup>
   <ItemGroup>
     <ClCompile Include="..\Modules\_abc.c" />
-    <ClCompile Include="..\Modules\_asynciomodule.c" />
     <ClCompile Include="..\Modules\_bisectmodule.c" />
     <ClCompile Include="..\Modules\_blake2\blake2module.c" />
     <ClCompile Include="..\Modules\_blake2\blake2b_impl.c" />
diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters
index 77b018ffb4e9..9dbd0669f76d 100644
--- a/PCbuild/pythoncore.vcxproj.filters
+++ b/PCbuild/pythoncore.vcxproj.filters
@@ -1073,9 +1073,6 @@
     <ClCompile Include="..\PC\_findvs.cpp">
       <Filter>PC</Filter>
     </ClCompile>
-    <ClCompile Include="..\Modules\_asynciomodule.c">
-      <Filter>Modules</Filter>
-    </ClCompile>
     <ClCompile Include="..\Modules\_contextvarsmodule.c">
       <Filter>Modules</Filter>
     </ClCompile>



More information about the Python-checkins mailing list