diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-07-10 20:23:15 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-07-10 20:23:15 (GMT) |
commit | f7c8584545be5b0ecbd904a4cd1889b0fb0edfb1 (patch) | |
tree | 613fbe7f7d93e8192dd12fd3cf00b63d55ca9963 /Python/bltinmodule.c | |
parent | cc879a059224eb9585b75d3f98861578027c342b (diff) | |
download | cpython-f7c8584545be5b0ecbd904a4cd1889b0fb0edfb1.zip cpython-f7c8584545be5b0ecbd904a4cd1889b0fb0edfb1.tar.gz cpython-f7c8584545be5b0ecbd904a4cd1889b0fb0edfb1.tar.bz2 |
#18424: PEP8ify the tense of the sum docstring.
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index cdc9080..d22dca2 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -2434,9 +2434,9 @@ builtin_sum(PyObject *self, PyObject *args) PyDoc_STRVAR(sum_doc, "sum(sequence[, start]) -> value\n\ \n\ -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\ of parameter 'start' (which defaults to 0). When the sequence is\n\ -empty, returns start."); +empty, return start."); static PyObject * |