Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0cf832a9
Commit
0cf832a9
authored
Sep 03, 2019
by
Dong-hee Na
Committed by
Tal Einat
Sep 03, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-37798: Fix _statistics module doc (GH-15546)
parent
132acaba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
Modules/_statisticsmodule.c
Modules/_statisticsmodule.c
+4
-1
No files found.
Modules/_statisticsmodule.c
View file @
0cf832a9
...
...
@@ -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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment