mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266)
This commit is contained in:
parent
5be666010e
commit
0a18ee4be7
9 changed files with 264 additions and 73 deletions
2
setup.py
2
setup.py
|
@ -785,6 +785,8 @@ class PyBuildExt(build_ext):
|
|||
self.add(Extension("_abc", ["_abc.c"]))
|
||||
# _queue module
|
||||
self.add(Extension("_queue", ["_queuemodule.c"]))
|
||||
# _statistics module
|
||||
self.add(Extension("_statistics", ["_statisticsmodule.c"]))
|
||||
|
||||
# Modules with some UNIX dependencies -- on by default:
|
||||
# (If you have a really backward UNIX, select and socket may not be
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue