whatsnew: frozen package __path__; and min/max versionadded.
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 @@
    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 @@
    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