From f73b4b007798e8c088280a9e25be7cc66e470435 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 3 Jul 2005 20:21:40 +0000 Subject: [PATCH] bug [ 1162912 ] typesseq-mutable lacks note on combined key/cmp usage --- Doc/lib/libstdtypes.tex | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 65e96bf0f7c..9d1d9b18b74 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -1146,6 +1146,9 @@ Notes: because \var{cmp} is called multiple times for each list element while \var{key} and \var{reverse} touch each element only once. + \note{If both \var{key} and \var{cmp} are supplied the \var{key} + function is applied before the \var{cmp} function.} + \versionchanged[Support for \code{None} as an equivalent to omitting \var{cmp} was added]{2.3}