diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-02-22 20:05:08 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-02-22 20:05:08 (GMT) |
commit | b070b3f502cd778fd262be2c8b46d536dafdfebd (patch) | |
tree | 4f977c48bc4fec8da871dd901f435beda4bb2621 /Doc/library | |
parent | fce008200575e9df95f7cf884e7c935166933399 (diff) | |
download | cpython-b070b3f502cd778fd262be2c8b46d536dafdfebd.zip cpython-b070b3f502cd778fd262be2c8b46d536dafdfebd.tar.gz cpython-b070b3f502cd778fd262be2c8b46d536dafdfebd.tar.bz2 |
whatsnew: frozen package __path__; and min/max versionadded.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/functions.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 57f015b..307ff51 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -781,6 +781,9 @@ are always available. They are listed here in alphabetical order. such as ``sorted(iterable, key=keyfunc, reverse=True)[0]`` and ``heapq.nlargest(1, iterable, key=keyfunc)``. + .. versionadded:: 3.4 + The *default* keyword-only argument. + .. _func-memoryview: .. function:: memoryview(obj) @@ -812,6 +815,9 @@ are always available. They are listed here in alphabetical order. such as ``sorted(iterable, key=keyfunc)[0]`` and ``heapq.nsmallest(1, iterable, key=keyfunc)``. + .. versionadded:: 3.4 + The *default* keyword-only argument. + .. function:: next(iterator[, default]) Retrieve the next item from the *iterator* by calling its |