[Python-checkins] cpython (2.7): Reword set docs to use *proper subset/superset* terminology.
andrew.svetlov
python-checkins at python.org
Thu Nov 1 20:48:44 CET 2012
http://hg.python.org/cpython/rev/7dda9dc5e830
changeset: 80168:7dda9dc5e830
branch: 2.7
parent: 80164:02a5322b0cee
user: Andrew Svetlov <andrew.svetlov at gmail.com>
date: Thu Nov 01 21:47:05 2012 +0200
summary:
Reword set docs to use *proper subset/superset* terminology.
files:
Doc/library/stdtypes.rst | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1771,7 +1771,7 @@
.. 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 @@
.. 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, ...)
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list