From: Andrew Svetlov Date: Thu, 1 Nov 2012 19:47:05 +0000 (+0200) Subject: Reword set docs to use *proper subset/superset* terminology. X-Git-Tag: v2.7.4rc1~420 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2c184c6d75bb60ec7f8f564a91b4ac55d4796da7;p=thirdparty%2FPython%2Fcpython.git Reword set docs to use *proper subset/superset* terminology. --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index bdd8c995eb5e..b08561e1cd30 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -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, ...)