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

tarek.ziade python-checkins at python.org
Sat Aug 29 15:37:34 CEST 2009


Author: tarek.ziade
Date: Sat Aug 29 15:37:34 2009
New Revision: 74579

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

........
  r74578 | tarek.ziade | 2009-08-29 15:33:21 +0200 (Sat, 29 Aug 2009) | 1 line
  
  fixed #6801: symmetric_difference_update also accepts pipe
........


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

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	Sat Aug 29 15:37:34 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.
 

Modified: python/branches/release26-maint/Misc/NEWS
==============================================================================
--- python/branches/release26-maint/Misc/NEWS	(original)
+++ python/branches/release26-maint/Misc/NEWS	Sat Aug 29 15:37:34 2009
@@ -192,6 +192,9 @@
 - Issue #6556: Fixed the Distutils configuration files location explanation
   for Windows.
 
+- Issue #6801 : symmetric_difference_update also accepts |.
+  Thanks to Carl Chenet.
+
 Tests
 -----
 


More information about the Python-checkins mailing list