[Python-checkins] cpython (merge 3.3 -> default): Merge: Reword set docs to use *proper subset/superset* terminology.

andrew.svetlov python-checkins at python.org
Thu Nov 1 20:48:48 CET 2012


http://hg.python.org/cpython/rev/56c3ab6f7f07
changeset:   80171:56c3ab6f7f07
parent:      80167:63b495ff366b
parent:      80170:95a4c7d02309
user:        Andrew Svetlov <andrew.svetlov at gmail.com>
date:        Thu Nov 01 21:48:34 2012 +0200
summary:
  Merge: 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
@@ -2793,7 +2793,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)
@@ -2803,7 +2803,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