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.
........
This commit is contained in:
Georg Brandl 2009-08-30 21:06:47 +00:00
parent 95b0991af3
commit fc27c34639
1 changed files with 1 additions and 1 deletions

View File

@ -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.