diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-01-16 06:29:42 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-01-16 06:29:42 (GMT) |
commit | 37c7a065ceeecacb3c54de72ed75a3bbae34d925 (patch) | |
tree | ac764445780f06e7ef1eebf2223c6a7192cb2a2d /Doc/library/functools.rst | |
parent | 6f5b6d7e8f8aa5ed94dea62a7fd1df57b8fd713d (diff) | |
parent | 9ecb6beb8c96825c33ca29d34e02b6e80b0b3f52 (diff) | |
download | cpython-37c7a065ceeecacb3c54de72ed75a3bbae34d925.zip cpython-37c7a065ceeecacb3c54de72ed75a3bbae34d925.tar.gz cpython-37c7a065ceeecacb3c54de72ed75a3bbae34d925.tar.bz2 |
#13695: merge with 3.2.
Diffstat (limited to 'Doc/library/functools.rst')
-rw-r--r-- | Doc/library/functools.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index 4eaf54e..e5f95ec 100644 --- a/Doc/library/functools.rst +++ b/Doc/library/functools.rst @@ -24,7 +24,7 @@ The :mod:`functools` module defines the following functions: tools that accept key functions (such as :func:`sorted`, :func:`min`, :func:`max`, :func:`heapq.nlargest`, :func:`heapq.nsmallest`, :func:`itertools.groupby`). This function is primarily used as a transition - tool for programs being converted from Py2.x which supported the use of + tool for programs being converted from Python 2 which supported the use of comparison functions. A compare function is any callable that accept two arguments, compares them, |