summaryrefslogtreecommitdiff
path: root/PC
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2019-08-24 07:20:30 +0900
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2019-08-23 15:20:30 -0700
commit0a18ee4be7ba215f414bef04598e0849504f9f1e (patch)
tree02b4a3f5f9cd481ce73e4aa934b5bf13b600504a /PC
parent5be666010e4df65dc4d831435cc92340ea369f94 (diff)
downloadcpython-git-0a18ee4be7ba215f414bef04598e0849504f9f1e.tar.gz
bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266)
Diffstat (limited to 'PC')
-rw-r--r--PC/config.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c
index 6f34962bd7..8eaeb31c9b 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -23,6 +23,7 @@ extern PyObject* PyInit__sha1(void);
extern PyObject* PyInit__sha256(void);
extern PyObject* PyInit__sha512(void);
extern PyObject* PyInit__sha3(void);
+extern PyObject* PyInit__statistics(void);
extern PyObject* PyInit__blake2(void);
extern PyObject* PyInit_time(void);
extern PyObject* PyInit__thread(void);
@@ -103,6 +104,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_blake2", PyInit__blake2},
{"time", PyInit_time},
{"_thread", PyInit__thread},
+ {"_statistics", PyInit__statistics},
#ifdef WIN32
{"msvcrt", PyInit_msvcrt},
{"_locale", PyInit__locale},