Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 132acab commit 0cf832aCopy full SHA for 0cf832a
1 file changed
Modules/_statisticsmodule.c
@@ -110,10 +110,13 @@ static PyMethodDef statistics_methods[] = {
110
{NULL, NULL, 0, NULL}
111
};
112
113
+PyDoc_STRVAR(statistics_doc,
114
+"Accelerators for the statistics module.\n");
115
+
116
static struct PyModuleDef statisticsmodule = {
117
PyModuleDef_HEAD_INIT,
118
"_statistics",
- _statistics__normal_dist_inv_cdf__doc__,
119
+ statistics_doc,
120
-1,
121
statistics_methods,
122
NULL,
0 commit comments