summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-11-01 19:47:54 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-11-01 19:47:54 (GMT)
commit5bb420761fc72f9a58461ff2c294c82fe990f0fa (patch)
tree5f209de6f4b3791be9b0c8bd6dbfd74c9b0b4630 /Doc/library
parent1491cbdf6374fc47f89476e3fbd1acfbc4de5ea9 (diff)
downloadcpython-5bb420761fc72f9a58461ff2c294c82fe990f0fa.zip
cpython-5bb420761fc72f9a58461ff2c294c82fe990f0fa.tar.gz
cpython-5bb420761fc72f9a58461ff2c294c82fe990f0fa.tar.bz2
Reword set docs to use *proper subset/superset* terminology.
Diffstat (limited to 'Doc/library')
-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 78a2799..b3c21fe 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, ...)