[Python-checkins] r74600 - in python/branches/release26-maint: Doc/library/stdtypes.rst

georg.brandl python-checkins at python.org
Sun Aug 30 23:06:47 CEST 2009


Author: georg.brandl
Date: Sun Aug 30 23:06:47 2009
New Revision: 74600

Log:
Merged revisions 74590 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r74590 | georg.brandl | 2009-08-30 11:51:53 +0000 (So, 30 Aug 2009) | 1 line
  
  #6801: fix copy-paste oversight.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Doc/library/stdtypes.rst

Modified: python/branches/release26-maint/Doc/library/stdtypes.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/stdtypes.rst	(original)
+++ python/branches/release26-maint/Doc/library/stdtypes.rst	Sun Aug 30 23:06:47 2009
@@ -1740,7 +1740,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