diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2019-08-23 22:20:30 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-08-23 22:20:30 (GMT) |
commit | 0a18ee4be7ba215f414bef04598e0849504f9f1e (patch) | |
tree | 02b4a3f5f9cd481ce73e4aa934b5bf13b600504a /PCbuild | |
parent | 5be666010e4df65dc4d831435cc92340ea369f94 (diff) | |
download | cpython-0a18ee4be7ba215f414bef04598e0849504f9f1e.zip cpython-0a18ee4be7ba215f414bef04598e0849504f9f1e.tar.gz cpython-0a18ee4be7ba215f414bef04598e0849504f9f1e.tar.bz2 |
bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 4fd2607..1c055b6 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -333,6 +333,7 @@ <ClCompile Include="..\Modules\sha256module.c" /> <ClCompile Include="..\Modules\sha512module.c" /> <ClCompile Include="..\Modules\signalmodule.c" /> + <ClCompile Include="..\Modules\_statisticsmodule.c" /> <ClCompile Include="..\Modules\symtablemodule.c" /> <ClCompile Include="..\Modules\_threadmodule.c" /> <ClCompile Include="..\Modules\_tracemalloc.c" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 2d09e9f..dbff89f 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -611,6 +611,9 @@ <ClCompile Include="..\Modules\_sre.c"> <Filter>Modules</Filter> </ClCompile> + <ClCompile Include="..\Modules\_statisticsmodule.c"> + <Filter>Modules</Filter> + </ClCompile> <ClCompile Include="..\Modules\_struct.c"> <Filter>Modules</Filter> </ClCompile> |