diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-03 10:21:59 (GMT) |
---|---|---|
committer | Tal Einat <taleinat+github@gmail.com> | 2019-09-03 10:21:59 (GMT) |
commit | 58067d2cf6e81187f9782aff03cc8bec3d878778 (patch) | |
tree | 1ae40eaa7230c5654b0370fe512aee91fc2bd3b5 /Modules | |
parent | 1c18aec3bb7d59061742854d3204439a5274e201 (diff) | |
download | cpython-58067d2cf6e81187f9782aff03cc8bec3d878778.zip cpython-58067d2cf6e81187f9782aff03cc8bec3d878778.tar.gz cpython-58067d2cf6e81187f9782aff03cc8bec3d878778.tar.bz2 |
bpo-37798: Fix _statistics module doc (GH-15546)
(cherry picked from commit 0cf832a9ef84be6e18aad02464814530d80b82b2)
Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_statisticsmodule.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Modules/_statisticsmodule.c b/Modules/_statisticsmodule.c index 676d3fb..16a9924 100644 --- a/Modules/_statisticsmodule.c +++ b/Modules/_statisticsmodule.c @@ -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, |