other -> others where multiple arguments are accepted.

This commit is contained in:
Georg Brandl 2009-08-31 06:38:29 +00:00
parent 7d65fbfed4
commit 4ea46a6614

View file

@ -1765,7 +1765,7 @@ The constructors for both classes work the same:
.. method:: update(other, ...) .. method:: update(other, ...)
set |= other | ... set |= other | ...
Update the set, adding elements from *other*. Update the set, adding elements from all others.
.. versionchanged:: 2.6 .. versionchanged:: 2.6
Accepts multiple input iterables. Accepts multiple input iterables.
@ -1773,7 +1773,7 @@ The constructors for both classes work the same:
.. method:: intersection_update(other, ...) .. method:: intersection_update(other, ...)
set &= other & ... set &= other & ...
Update the set, keeping only elements found in it and *other*. Update the set, keeping only elements found in it and all others.
.. versionchanged:: 2.6 .. versionchanged:: 2.6
Accepts multiple input iterables. Accepts multiple input iterables.