diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-11-01 19:48:34 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-11-01 19:48:34 (GMT) |
commit | e0614327ffbae71ba71202015f23047b0c523c72 (patch) | |
tree | 11dbbd89e8d2a2a8748438c68c540833503d6289 | |
parent | 553408fe081a64769ce702096bbcd82c7d4c43bf (diff) | |
parent | 129f57bc51c129babdb96e12ef1f0e0bc47aa582 (diff) | |
download | cpython-e0614327ffbae71ba71202015f23047b0c523c72.zip cpython-e0614327ffbae71ba71202015f23047b0c523c72.tar.gz cpython-e0614327ffbae71ba71202015f23047b0c523c72.tar.bz2 |
Merge: Reword set docs to use *proper subset/superset* terminology.
-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 4d479a7..046295c 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2793,7 +2793,7 @@ The constructors for both classes work the same: .. method:: set < other - Test whether the set is a true subset of *other*, that is, + Test whether the set is a proper subset of *other*, that is, ``set <= other and set != other``. .. method:: issuperset(other) @@ -2803,7 +2803,7 @@ The constructors for both classes work the same: .. method:: set > other - Test whether the set is a true superset of *other*, that is, ``set >= + Test whether the set is a proper superset of *other*, that is, ``set >= other and set != other``. .. method:: union(other, ...) |