summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-07-10 20:22:59 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-07-10 20:22:59 (GMT)
commitacb362e29f46a7c748a6dff450d4f912ca03b633 (patch)
tree3b6050de67ee55bad7fc423724ffe4f88952f5b4 /Python
parent609142ef05c4b71697e7819f47cf2512e6b8d85e (diff)
parent87ead1138d11c92139182524eb50965fc652179f (diff)
downloadcpython-acb362e29f46a7c748a6dff450d4f912ca03b633.zip
cpython-acb362e29f46a7c748a6dff450d4f912ca03b633.tar.gz
cpython-acb362e29f46a7c748a6dff450d4f912ca03b633.tar.bz2
Merge: #18424: PEP8ify the tense of the sum docstring.
Diffstat (limited to 'Python')
-rw-r--r--Python/bltinmodule.c4
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 *