diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index 39aab162a80..b735c8f3678 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -973,6 +973,9 @@ are always available. They are listed here in alphabetical order.
*reverse* is a boolean value. If set to ``True``, then the list elements are
sorted as if each comparison were reversed.
+ To convert an old-style *cmp* function to a *key* function, see the
+ `CmpToKey recipe in the ASPN cookbook
+ `_\.
.. function:: staticmethod(function)
diff --git a/Doc/library/math.rst b/Doc/library/math.rst
index 55e03bfa557..d59296a2dbd 100644
--- a/Doc/library/math.rst
+++ b/Doc/library/math.rst
@@ -93,6 +93,10 @@ Number-theoretic and representation functions
occasionally double-round an intermediate sum causing it to be off in its
least significant bit.
+ For further discussion and two alternative approaches, see the `ASPN cookbook
+ recipes for accurate floating point summation
+ `_\.
+
.. function:: isinf(x)