summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-11-01 21:47:54 +0200
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-11-01 21:47:54 +0200
commit30ed698c6f95b9cd5f5d7c19bfddfbd617e3277d (patch)
treedb4e29f9d35ed5533bf2ab807abe084af9fa51a9
parent04b40b4d0c72d4f997a3a3a81bdb4f5d261e171d (diff)
downloadcpython-30ed698c6f95b9cd5f5d7c19bfddfbd617e3277d.tar.gz
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 78a2799588..b3c21fe30c 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1954,7 +1954,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)
@@ -1964,7 +1964,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, ...)