bpo-37798: Fix _statistics module doc (GH-15546)

(cherry picked from commit 0cf832a9ef)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
This commit is contained in:
Miss Islington (bot) 2019-09-03 03:21:59 -07:00 committed by Tal Einat
parent 1c18aec3bb
commit 58067d2cf6

View 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,