]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Reword set docs to use *proper subset/superset* terminology.
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Thu, 1 Nov 2012 19:47:05 +0000 (21:47 +0200)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Thu, 1 Nov 2012 19:47:05 +0000 (21:47 +0200)
Doc/library/stdtypes.rst

index bdd8c995eb5e24941a07098f51efa47e5c8f0885..b08561e1cd30bda1b60d521d3425b90c9ed5e605 100644 (file)
@@ -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, ...)