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

This commit is contained in:
Dong-hee Na 2019-09-03 18:21:45 +09:00 committed by Tal Einat
parent 132acaba5a
commit 0cf832a9ef

View file

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