[Python-checkins] r79744 - python/trunk/Doc/library/functools.rst

raymond.hettinger python-checkins at python.org
Sun Apr 4 09:33:47 CEST 2010


Author: raymond.hettinger
Date: Sun Apr  4 09:33:46 2010
New Revision: 79744

Log:
Documentation nit

Modified:
   python/trunk/Doc/library/functools.rst

Modified: python/trunk/Doc/library/functools.rst
==============================================================================
--- python/trunk/Doc/library/functools.rst	(original)
+++ python/trunk/Doc/library/functools.rst	Sun Apr  4 09:33:46 2010
@@ -38,6 +38,8 @@
                return ((self.lastname.lower(), self.firstname.lower()) <
                        (other.lastname.lower(), other.firstname.lower()))
 
+   .. versionadded:: 2.7
+
 .. function:: reduce(function, iterable[, initializer])
 
    This is the same function as :func:`reduce`.  It is made available in this module


More information about the Python-checkins mailing list