[Python-checkins] r74578 - in python/trunk: Doc/library/stdtypes.rst Misc/NEWS

tarek.ziade python-checkins at python.org
Sat Aug 29 15:33:22 CEST 2009


Author: tarek.ziade
Date: Sat Aug 29 15:33:21 2009
New Revision: 74578

Log:
fixed #6801: symmetric_difference_update also accepts pipe

Modified:
   python/trunk/Doc/library/stdtypes.rst
   python/trunk/Misc/NEWS

Modified: python/trunk/Doc/library/stdtypes.rst
==============================================================================
--- python/trunk/Doc/library/stdtypes.rst	(original)
+++ python/trunk/Doc/library/stdtypes.rst	Sat Aug 29 15:33:21 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.
 

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Sat Aug 29 15:33:21 2009
@@ -1229,6 +1229,9 @@
 - Issue #6556: Fixed the Distutils configuration files location explanation
   for Windows.
 
+- Issue #6801 : symmetric_difference_update also accepts |.
+  Thanks to Carl Chenet. 
+
 C-API
 -----
 


More information about the Python-checkins mailing list