This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients ezio.melotti, georg.brandl, rhettinger, sandro.tosi, terry.reedy, zuo
Date 2010-10-08.22:34:26
SpamBayes Score 0.0017667552
Marked as misclassified No
Message-id <1286577268.05.0.260651258873.issue7771@psf.upfronthosting.co.za>
In-reply-to
Content
The '^' corresponds to the __xor__ magic method.

snip from _abcoll.py:

    def __xor__(self, other):
        if not isinstance(other, Set):
            if not isinstance(other, Iterable):
                return NotImplemented
            other = self._from_iterable(other)
        return (self - other) | (other - self)
History
Date User Action Args
2010-10-08 22:34:28rhettingersetrecipients: + rhettinger, georg.brandl, terry.reedy, ezio.melotti, zuo, sandro.tosi
2010-10-08 22:34:28rhettingersetmessageid: <1286577268.05.0.260651258873.issue7771@psf.upfronthosting.co.za>
2010-10-08 22:34:26rhettingerlinkissue7771 messages
2010-10-08 22:34:26rhettingercreate