]> 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:54 +0000 (21:47 +0200)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Thu, 1 Nov 2012 19:47:54 +0000 (21:47 +0200)
Doc/library/stdtypes.rst

index 78a27995888ed8f549bcfff1e9ba91d9a29e5ef7..b3c21fe30c7c9f6ec23bb4ca3e36c7116dcadc7c 100644 (file)
@@ -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, ...)