mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
bpo-37798: Fix _statistics module doc (GH-15546)
This commit is contained in:
parent
132acaba5a
commit
0cf832a9ef
1 changed files with 4 additions and 1 deletions
|
@ -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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue