]> granicus.if.org Git - python/commitdiff
bpo-37798: Fix _statistics module doc (GH-15546)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 3 Sep 2019 10:21:59 +0000 (03:21 -0700)
committerTal Einat <taleinat+github@gmail.com>
Tue, 3 Sep 2019 10:21:59 +0000 (13:21 +0300)
(cherry picked from commit 0cf832a9ef84be6e18aad02464814530d80b82b2)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
Modules/_statisticsmodule.c

index 676d3fb33803d04f092637f3606a1f615014bd87..16a992485237abe7c769ce76bcadf02d8d5355e6 100644 (file)
@@ -110,10 +110,13 @@ static PyMethodDef statistics_methods[] = {
     {NULL, NULL, 0, NULL}
 };
 
+PyDoc_STRVAR(statistics_doc,
+"Accelerators for the statistics module.\n");
+
 static struct PyModuleDef statisticsmodule = {
         PyModuleDef_HEAD_INIT,
         "_statistics",
-        _statistics__normal_dist_inv_cdf__doc__,
+        statistics_doc,
         -1,
         statistics_methods,
         NULL,