diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2018-09-12 17:54:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-12 17:54:06 (GMT) |
commit | 9dfa0fe587eae3626ffc973680c6a17f35de3864 (patch) | |
tree | b9bcea3d12dd609b45aafd333d72a8c05f5d053b /Doc/library/functions.rst | |
parent | 0fb9fadd3b3e9e3698647e0b92d49b0b7aacd979 (diff) | |
download | cpython-9dfa0fe587eae3626ffc973680c6a17f35de3864.zip cpython-9dfa0fe587eae3626ffc973680c6a17f35de3864.tar.gz cpython-9dfa0fe587eae3626ffc973680c6a17f35de3864.tar.bz2 |
bpo-34637: Make the *start* argument for *sum()* visible as a keyword argument. (GH-9208)
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r-- | Doc/library/functions.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 48cd9b0..17960eb 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1488,6 +1488,9 @@ are always available. They are listed here in alphabetical order. see :func:`math.fsum`\. To concatenate a series of iterables, consider using :func:`itertools.chain`. + .. versionchanged:: 3.8 + The *start* parameter can be specified as a keyword argument. + .. function:: super([type[, object-or-type]]) Return a proxy object that delegates method calls to a parent or sibling |