diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-11-01 19:48:16 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-11-01 19:48:16 (GMT) |
commit | 129f57bc51c129babdb96e12ef1f0e0bc47aa582 (patch) | |
tree | a07792dff3f748325b7246b96cc95199401c26ee | |
parent | 7c91dbec0ed16b2dba8ce5d923015e821333b673 (diff) | |
parent | 5bb420761fc72f9a58461ff2c294c82fe990f0fa (diff) | |
download | cpython-129f57bc51c129babdb96e12ef1f0e0bc47aa582.zip cpython-129f57bc51c129babdb96e12ef1f0e0bc47aa582.tar.gz cpython-129f57bc51c129babdb96e12ef1f0e0bc47aa582.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, ...) |