From: R David Murray Date: Wed, 10 Jul 2013 20:23:15 +0000 (-0400) Subject: #18424: PEP8ify the tense of the sum docstring. X-Git-Tag: v2.7.6rc1~308^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f7c8584545be5b0ecbd904a4cd1889b0fb0edfb1;p=thirdparty%2FPython%2Fcpython.git #18424: PEP8ify the tense of the sum docstring. --- diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index cdc908084fc2..d22dca2f4879 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 *