Skip to content

Commit 58067d2

Browse files
miss-islingtoncorona10
authored andcommitted
bpo-37798: Fix _statistics module doc (GH-15546)
(cherry picked from commit 0cf832a) Co-authored-by: Dong-hee Na <[email protected]>
1 parent 1c18aec commit 58067d2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Modules/_statisticsmodule.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,13 @@ static PyMethodDef statistics_methods[] = {
110110
{NULL, NULL, 0, NULL}
111111
};
112112

113+
PyDoc_STRVAR(statistics_doc,
114+
"Accelerators for the statistics module.\n");
115+
113116
static struct PyModuleDef statisticsmodule = {
114117
PyModuleDef_HEAD_INIT,
115118
"_statistics",
116-
_statistics__normal_dist_inv_cdf__doc__,
119+
statistics_doc,
117120
-1,
118121
statistics_methods,
119122
NULL,

0 commit comments

Comments
 (0)