diff options
author | Georg Brandl <georg@python.org> | 2009-08-30 21:06:47 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-08-30 21:06:47 (GMT) |
commit | fc27c3463947497c30d45b1695ae36cadc02577a (patch) | |
tree | fb57e21a4f9a49046faa33d969194c6bcf9f5a7b /Doc | |
parent | 95b0991af34944bc61176cad025a447318b124c3 (diff) | |
download | cpython-fc27c3463947497c30d45b1695ae36cadc02577a.zip cpython-fc27c3463947497c30d45b1695ae36cadc02577a.tar.gz cpython-fc27c3463947497c30d45b1695ae36cadc02577a.tar.bz2 |
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.
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 878f0c0..7013f15 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. |