summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-08-29 13:37:34 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-08-29 13:37:34 (GMT)
commit95b0991af34944bc61176cad025a447318b124c3 (patch)
tree0c2c89b2eae54ba49f8de5dd16bd6ce8a753e3d7
parent75be68bd109d9622a294a382f31744df04c51227 (diff)
downloadcpython-95b0991af34944bc61176cad025a447318b124c3.zip
cpython-95b0991af34944bc61176cad025a447318b124c3.tar.gz
cpython-95b0991af34944bc61176cad025a447318b124c3.tar.bz2
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 ........
-rw-r--r--Doc/library/stdtypes.rst2
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 7013f15..878f0c0 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1740,7 +1740,7 @@ The constructors for both classes work the same:
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.
diff --git a/Misc/NEWS b/Misc/NEWS
index 7bf34a5..c2eea0f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -192,6 +192,9 @@ Documentation
- Issue #6556: Fixed the Distutils configuration files location explanation
for Windows.
+- Issue #6801 : symmetric_difference_update also accepts |.
+ Thanks to Carl Chenet.
+
Tests
-----