Commit 0cf832a9 authored by Dong-hee Na's avatar Dong-hee Na Committed by Tal Einat

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

parent 132acaba
...@@ -110,10 +110,13 @@ static PyMethodDef statistics_methods[] = { ...@@ -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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment