diff options
author | Gregory Szorc <gregory.szorc@gmail.com> | 2019-01-08 01:27:18 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2019-01-08 01:27:18 (GMT) |
commit | fbf50683b3a2301097d5cd48bc68b530c1e1720f (patch) | |
tree | 633b731a85e5525b30020aff80e513cd21e3175d /PCbuild | |
parent | ddd7c422fd89a053700f9ed5272cf732ccb09088 (diff) | |
download | cpython-fbf50683b3a2301097d5cd48bc68b530c1e1720f.zip cpython-fbf50683b3a2301097d5cd48bc68b530c1e1720f.tar.gz cpython-fbf50683b3a2301097d5cd48bc68b530c1e1720f.tar.bz2 |
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.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index ddf7f49..f33cdb5 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 77b018f..9dbd066 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> |