mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
fixed #6801: symmetric_difference_update also accepts pipe
This commit is contained in:
parent
2fdd58ad18
commit
3092ed977f
2 changed files with 4 additions and 1 deletions
|
@ -1787,7 +1787,7 @@ The constructors for both classes work the same:
|
||||||
Accepts multiple input iterables.
|
Accepts multiple input iterables.
|
||||||
|
|
||||||
.. method:: symmetric_difference_update(other)
|
.. method:: symmetric_difference_update(other)
|
||||||
set ^= other
|
set ^= other | ...
|
||||||
|
|
||||||
Update the set, keeping only elements found in either set, but not in both.
|
Update the set, keeping only elements found in either set, but not in both.
|
||||||
|
|
||||||
|
|
|
@ -1229,6 +1229,9 @@ Documentation
|
||||||
- Issue #6556: Fixed the Distutils configuration files location explanation
|
- Issue #6556: Fixed the Distutils configuration files location explanation
|
||||||
for Windows.
|
for Windows.
|
||||||
|
|
||||||
|
- Issue #6801 : symmetric_difference_update also accepts |.
|
||||||
|
Thanks to Carl Chenet.
|
||||||
|
|
||||||
C-API
|
C-API
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue