summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2013-05-07 01:23:10 (GMT)
committerRaymond Hettinger <python@rcn.com>2013-05-07 01:23:10 (GMT)
commit6e6bee8d084eb4693e73d55465de6a63d07009b4 (patch)
tree92376e79fafa5335165aa899557272c0988599ce /Doc
parentf4f24248dce5bf105613fce4d54c73e97dd09899 (diff)
parent12f588adeb5449dd3167024c6d02cb9def059d53 (diff)
downloadcpython-6e6bee8d084eb4693e73d55465de6a63d07009b4.zip
cpython-6e6bee8d084eb4693e73d55465de6a63d07009b4.tar.gz
cpython-6e6bee8d084eb4693e73d55465de6a63d07009b4.tar.bz2
merge
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/stdtypes.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 3763958..e7c777b 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2909,8 +2909,8 @@ The constructors for both classes work the same:
based on their members. For example, ``set('abc') == frozenset('abc')``
returns ``True`` and so does ``set('abc') in set([frozenset('abc')])``.
- The subset and equality comparisons do not generalize to a complete ordering
- function. For example, any two disjoint sets are not equal and are not
+ The subset and equality comparisons do not generalize to a total ordering
+ function. For example, any two nonempty disjoint sets are not equal and are not
subsets of each other, so *all* of the following return ``False``: ``a<b``,
``a==b``, or ``a>b``.