summaryrefslogtreecommitdiffstats
path: root/Doc/library/stdtypes.rst
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-11-01 19:47:05 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-11-01 19:47:05 (GMT)
commit2c184c6d75bb60ec7f8f564a91b4ac55d4796da7 (patch)
treeff31360d2cb431f72e615f6d087c3512f937ec2a /Doc/library/stdtypes.rst
parent0552fc2b8af80bd93f43001ce9d6b03402630ee2 (diff)
downloadcpython-2c184c6d75bb60ec7f8f564a91b4ac55d4796da7.zip
cpython-2c184c6d75bb60ec7f8f564a91b4ac55d4796da7.tar.gz
cpython-2c184c6d75bb60ec7f8f564a91b4ac55d4796da7.tar.bz2
Reword set docs to use *proper subset/superset* terminology.
Diffstat (limited to 'Doc/library/stdtypes.rst')
-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 bdd8c99..b08561e 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1771,7 +1771,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)
@@ -1781,7 +1781,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, ...)