From: Tarek Ziadé Date: Sat, 29 Aug 2009 13:33:21 +0000 (+0000) Subject: fixed #6801: symmetric_difference_update also accepts pipe X-Git-Tag: v2.7a1~610 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3092ed977fa601c68469a61e7366eaa40c77bb7b;p=python fixed #6801: symmetric_difference_update also accepts pipe --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 091cae4a10..4b84392e39 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1787,7 +1787,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 49a0942063..e9a929aa9e 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -1229,6 +1229,9 @@ Documentation - Issue #6556: Fixed the Distutils configuration files location explanation for Windows. +- Issue #6801 : symmetric_difference_update also accepts |. + Thanks to Carl Chenet. + C-API -----