[Python-checkins] r74590 - python/trunk/Doc/library/stdtypes.rst

georg.brandl python-checkins at python.org
Sun Aug 30 13:51:53 CEST 2009


Author: georg.brandl
Date: Sun Aug 30 13:51:53 2009
New Revision: 74590

Log:
#6801: fix copy-paste oversight.

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	Sun Aug 30 13:51:53 2009
@@ -1787,7 +1787,7 @@
          Accepts multiple input iterables.
 
    .. method:: symmetric_difference_update(other)
-               set ^= other | ...
+               set ^= other
 
       Update the set, keeping only elements found in either set, but not in both.
 


More information about the Python-checkins mailing list