]> granicus.if.org Git - python/commitdiff
note the blinding speed of these functions
authorBenjamin Peterson <benjamin@python.org>
Tue, 20 Dec 2011 16:12:41 +0000 (10:12 -0600)
committerBenjamin Peterson <benjamin@python.org>
Tue, 20 Dec 2011 16:12:41 +0000 (10:12 -0600)
Doc/library/operator.rst

index 4134d51861e5b6782f848ed1ec738c616497d88c..b03d9df2081a1265c94779061862ce8e50973013 100644 (file)
@@ -12,8 +12,8 @@
    from operator import itemgetter, iadd
 
 
-The :mod:`operator` module exports a set of functions corresponding to the
-intrinsic operators of Python.  For example, ``operator.add(x, y)`` is
+The :mod:`operator` module exports a set of efficient functions corresponding to
+the intrinsic operators of Python.  For example, ``operator.add(x, y)`` is
 equivalent to the expression ``x+y``.  The function names are those used for
 special class methods; variants without leading and trailing ``__`` are also
 provided for convenience.