summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-11-01 19:48:16 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-11-01 19:48:16 (GMT)
commit129f57bc51c129babdb96e12ef1f0e0bc47aa582 (patch)
treea07792dff3f748325b7246b96cc95199401c26ee
parent7c91dbec0ed16b2dba8ce5d923015e821333b673 (diff)
parent5bb420761fc72f9a58461ff2c294c82fe990f0fa (diff)
downloadcpython-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.rst4
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, ...)