diff options
author | Raymond Hettinger <python@rcn.com> | 2013-05-07 01:22:43 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-05-07 01:22:43 (GMT) |
commit | 12f588adeb5449dd3167024c6d02cb9def059d53 (patch) | |
tree | 9cb9ba893a56691cec6e440c7e6549ca86bdfcbe /Doc/library | |
parent | a7f7deb6eddc666aee507c04633d95ed78e289e0 (diff) | |
download | cpython-12f588adeb5449dd3167024c6d02cb9def059d53.zip cpython-12f588adeb5449dd3167024c6d02cb9def059d53.tar.gz cpython-12f588adeb5449dd3167024c6d02cb9def059d53.tar.bz2 |
Issue 17920: Fix-up terminology in the set documentation
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/stdtypes.rst | 4 |
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``. |