Merge: Reword set docs to use *proper subset/superset* terminology.

This commit is contained in:
Andrew Svetlov 2012-11-01 21:48:34 +02:00
commit e0614327ff
1 changed files with 2 additions and 2 deletions

View File

@ -2793,7 +2793,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)
@ -2803,7 +2803,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, ...)