[Python-checkins] r74603 - python/trunk/Doc/library/stdtypes.rst
georg.brandl
python-checkins at python.org
Mon Aug 31 08:38:29 CEST 2009
Author: georg.brandl
Date: Mon Aug 31 08:38:29 2009
New Revision: 74603
Log:
other -> others where multiple arguments are accepted.
Modified:
python/trunk/Doc/library/stdtypes.rst
Modified: python/trunk/Doc/library/stdtypes.rst
==============================================================================
--- python/trunk/Doc/library/stdtypes.rst (original)
+++ python/trunk/Doc/library/stdtypes.rst Mon Aug 31 08:38:29 2009
@@ -1765,7 +1765,7 @@
.. method:: update(other, ...)
set |= other | ...
- Update the set, adding elements from *other*.
+ Update the set, adding elements from all others.
.. versionchanged:: 2.6
Accepts multiple input iterables.
@@ -1773,7 +1773,7 @@
.. method:: intersection_update(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
Accepts multiple input iterables.
More information about the Python-checkins
mailing list