diff options
author | INADA Naoki <songofacandy@gmail.com> | 2016-10-15 06:39:19 (GMT) |
---|---|---|
committer | INADA Naoki <songofacandy@gmail.com> | 2016-10-15 06:39:19 (GMT) |
commit | 9f2ce2548107eedaf0970546a508c33d24920622 (patch) | |
tree | 2a410ccb15a3acb857985a3ce15e71fc7bdc3cda /PCbuild | |
parent | 479eb760f4dd5ae5cfc5ccf8a361cdea3d48624a (diff) | |
download | cpython-9f2ce2548107eedaf0970546a508c33d24920622.zip cpython-9f2ce2548107eedaf0970546a508c33d24920622.tar.gz cpython-9f2ce2548107eedaf0970546a508c33d24920622.tar.bz2 |
Issue #28428: Rename _futures module to _asyncio.
It will have more speedup functions or classes other than asyncio.Future.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 2 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 1507adb..aa6ba74 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -213,6 +213,7 @@ <ClInclude Include="..\Python\wordcode_helpers.h" /> </ItemGroup> <ItemGroup> + <ClCompile Include="..\Modules\_asynciomodule.c" /> <ClCompile Include="..\Modules\_bisectmodule.c" /> <ClCompile Include="..\Modules\_blake2\blake2module.c" /> <ClCompile Include="..\Modules\_blake2\blake2b_impl.c" /> @@ -221,7 +222,6 @@ <ClCompile Include="..\Modules\_collectionsmodule.c" /> <ClCompile Include="..\Modules\_csv.c" /> <ClCompile Include="..\Modules\_functoolsmodule.c" /> - <ClCompile Include="..\Modules\_futuresmodule.c" /> <ClCompile Include="..\Modules\_heapqmodule.c" /> <ClCompile Include="..\Modules\_json.c" /> <ClCompile Include="..\Modules\_localemodule.c" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index ef24333..a45b9d9 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -446,6 +446,9 @@ </ClInclude> </ItemGroup> <ItemGroup> + <ClCompile Include="..\Modules\_asynciomodule.c"> + <Filter>Modules</Filter> + </ClCompile> <ClCompile Include="..\Modules\_bisectmodule.c"> <Filter>Modules</Filter> </ClCompile> @@ -470,9 +473,6 @@ <ClCompile Include="..\Modules\_functoolsmodule.c"> <Filter>Modules</Filter> </ClCompile> - <ClCompile Include="..\Modules\_futuresmodule.c"> - <Filter>Modules</Filter> - </ClCompile> <ClCompile Include="..\Modules\_heapqmodule.c"> <Filter>Modules</Filter> </ClCompile> |