diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-08-23 22:39:27 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-08-23 22:39:27 (GMT) |
commit | 5779c536321e1405b4c17654a85b8f9221be765e (patch) | |
tree | 48a9f516712595f455c6edf603bfbaa93eecebee /PCbuild | |
parent | af84a88ef8b3288da528d2f52b7d3fbafb8dc8a6 (diff) | |
download | cpython-5779c536321e1405b4c17654a85b8f9221be765e.zip cpython-5779c536321e1405b4c17654a85b8f9221be765e.tar.gz cpython-5779c536321e1405b4c17654a85b8f9221be765e.tar.bz2 |
bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266) (GH-15441)
(cherry picked from commit 0a18ee4be7ba215f414bef04598e0849504f9f1e)
Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
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 09a63c0..13c3b59 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -331,6 +331,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 63ab88b..ebab119 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -605,6 +605,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> |