summaryrefslogtreecommitdiffstats
path: root/Doc/library/operator.rst
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-02-01 14:18:10 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-02-01 14:18:10 (GMT)
commitc48d83402687c0c5d6da1c7bb1a677208effa35e (patch)
tree3bc0e90855d9d77d2355e0e477c354d765db12b0 /Doc/library/operator.rst
parentc008a176afdef8cb7afc0e48a8fb306f986964e8 (diff)
downloadcpython-c48d83402687c0c5d6da1c7bb1a677208effa35e.zip
cpython-c48d83402687c0c5d6da1c7bb1a677208effa35e.tar.gz
cpython-c48d83402687c0c5d6da1c7bb1a677208effa35e.tar.bz2
Issue #1717: documentation fixes related to the cmp removal.
Diffstat (limited to 'Doc/library/operator.rst')
-rw-r--r--Doc/library/operator.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
index 089c7fa..24ace8b 100644
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -43,9 +43,9 @@ the rich comparison operators they support:
equivalent to ``a < b``, ``le(a, b)`` is equivalent to ``a <= b``, ``eq(a,
b)`` is equivalent to ``a == b``, ``ne(a, b)`` is equivalent to ``a != b``,
``gt(a, b)`` is equivalent to ``a > b`` and ``ge(a, b)`` is equivalent to ``a
- >= b``. Note that unlike the built-in :func:`cmp`, these functions can
- return any value, which may or may not be interpretable as a Boolean value.
- See :ref:`comparisons` for more information about rich comparisons.
+ >= b``. Note that these functions can return any value, which may
+ or may not be interpretable as a Boolean value. See
+ :ref:`comparisons` for more information about rich comparisons.
The logical operations are also generally applicable to all objects, and support