From 5bb420761fc72f9a58461ff2c294c82fe990f0fa Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Thu, 1 Nov 2012 21:47:54 +0200 Subject: [PATCH] Reword set docs to use *proper subset/superset* terminology. --- Doc/library/stdtypes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 78a27995888..b3c21fe30c7 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -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, ...)