On Wed, 27 Feb 2019 10:48:21 -0800 Guido van Rossum <[email protected]> wrote: > > Great, this sounds like a good argument for + over |. The other argument is > that | for sets *is* symmetrical, [...]
As much as it can be:
>>> {-0.0} | {0.0}
{-0.0}
>>> {0.0} | {-0.0}
{0.0}
;-)
Antoine.
_______________________________________________
Python-ideas mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/
