]> 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 e10ca7edbb3df6ea5138de6a21fa1d0247d2c5ad..53d45b2306eb959db3d0a5abc72e5720d85e501c 100644 (file)
@@ -12,8 +12,8 @@
    from operator import itemgetter
 
 
-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.