]> granicus.if.org Git - python/commitdiff
bpo-37798: Fix _statistics module doc (GH-15546)
authorDong-hee Na <donghee.na92@gmail.com>
Tue, 3 Sep 2019 09:21:45 +0000 (18:21 +0900)
committerTal Einat <taleinat+github@gmail.com>
Tue, 3 Sep 2019 09:21:45 +0000 (12:21 +0300)
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,