Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Python/bltinmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2443,10 +2443,10 @@ builtin_sum(PyObject *self, PyObject *args)
}

PyDoc_STRVAR(sum_doc,
"sum(sequence[, start]) -> value\n\
"sum(iterable[, start]) -> value\n\
\n\
Return the sum of a sequence of numbers (NOT strings) plus the value\n\
of parameter 'start' (which defaults to 0). When the sequence is\n\
Return the sum of an iterable or sequence of numbers (NOT strings)\n\
plus the value of 'start' (which defaults to 0). When the sequence is\n\
empty, return start.");


Expand Down