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.
1 parent cc879a0 commit f7c8584Copy full SHA for f7c8584
1 file changed
Python/bltinmodule.c
@@ -2434,9 +2434,9 @@ builtin_sum(PyObject *self, PyObject *args)
2434
PyDoc_STRVAR(sum_doc,
2435
"sum(sequence[, start]) -> value\n\
2436
\n\
2437
-Returns the sum of a sequence of numbers (NOT strings) plus the value\n\
+Return the sum of a sequence of numbers (NOT strings) plus the value\n\
2438
of parameter 'start' (which defaults to 0). When the sequence is\n\
2439
-empty, returns start.");
+empty, return start.");
2440
2441
2442
static PyObject *
0 commit comments