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 296b73c commit 87ead11Copy full SHA for 87ead11
1 file changed
Python/bltinmodule.c
@@ -2097,9 +2097,9 @@ builtin_sum(PyObject *self, PyObject *args)
2097
PyDoc_STRVAR(sum_doc,
2098
"sum(iterable[, start]) -> value\n\
2099
\n\
2100
-Returns the sum of an iterable of numbers (NOT strings) plus the value\n\
+Return the sum of an iterable of numbers (NOT strings) plus the value\n\
2101
of parameter 'start' (which defaults to 0). When the iterable is\n\
2102
-empty, returns start.");
+empty, return start.");
2103
2104
2105
static PyObject *
0 commit comments