(original) (raw)

changeset: 74088:d85efd73b0e1 branch: 3.2 parent: 74082:71e5a083f9b1 user: Benjamin Peterson benjamin@python.org date: Mon Dec 19 16:41:11 2011 -0500 files: Doc/library/operator.rst description: don't mention implementation detail diff -r 71e5a083f9b1 -r d85efd73b0e1 Doc/library/operator.rst --- a/Doc/library/operator.rst Mon Dec 19 16:21:21 2011 +0100 +++ b/Doc/library/operator.rst Mon Dec 19 16:41:11 2011 -0500 @@ -12,11 +12,11 @@ from operator import itemgetter, iadd -The :mod:`operator` module exports a set of functions implemented in C -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. +The :mod:`operator` module exports a set of 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. The functions fall into categories that perform object comparisons, logical operations, mathematical operations and sequence operations. /benjamin@python.org