diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-07-10 20:22:59 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-07-10 20:22:59 (GMT) |
commit | acb362e29f46a7c748a6dff450d4f912ca03b633 (patch) | |
tree | 3b6050de67ee55bad7fc423724ffe4f88952f5b4 /Python/bltinmodule.c | |
parent | 609142ef05c4b71697e7819f47cf2512e6b8d85e (diff) | |
parent | 87ead1138d11c92139182524eb50965fc652179f (diff) | |
download | cpython-acb362e29f46a7c748a6dff450d4f912ca03b633.zip cpython-acb362e29f46a7c748a6dff450d4f912ca03b633.tar.gz cpython-acb362e29f46a7c748a6dff450d4f912ca03b633.tar.bz2 |
Merge: #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 86e0805..949f029 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -2113,9 +2113,9 @@ builtin_sum(PyObject *self, PyObject *args) PyDoc_STRVAR(sum_doc, "sum(iterable[, start]) -> value\n\ \n\ -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\ of parameter 'start' (which defaults to 0). When the iterable is\n\ -empty, returns start."); +empty, return start."); static PyObject * |