summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2016-10-09 05:51:36 (GMT)
committerINADA Naoki <songofacandy@gmail.com>2016-10-09 05:51:36 (GMT)
commitca2f0d06f104b6d25ed1475aecde9d10451e488f (patch)
tree16ea99ad7a86ab85dd6ca8dadd04e4bbfb0610b0 /PCbuild
parenta774a6bd8244a7ac97aa258939490b858264efb8 (diff)
parent9e4e38ecd2cb46e0e52d1b23de3dd95dcdf645bf (diff)
downloadcpython-ca2f0d06f104b6d25ed1475aecde9d10451e488f.zip
cpython-ca2f0d06f104b6d25ed1475aecde9d10451e488f.tar.gz
cpython-ca2f0d06f104b6d25ed1475aecde9d10451e488f.tar.bz2
Issue #26801: Added C implementation of asyncio.Future.
Original patch by Yury Selivanov.
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/pythoncore.vcxproj1
-rw-r--r--PCbuild/pythoncore.vcxproj.filters3
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj
index 769c643..1507adb 100644
--- a/PCbuild/pythoncore.vcxproj
+++ b/PCbuild/pythoncore.vcxproj
@@ -221,6 +221,7 @@
<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 5eb4275..ef24333 100644
--- a/PCbuild/pythoncore.vcxproj.filters
+++ b/PCbuild/pythoncore.vcxproj.filters
@@ -470,6 +470,9 @@
<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>