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 /PC | |
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 'PC')
-rw-r--r-- | PC/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index 6f34962..8eaeb31 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}, |