(An Unofficial) Python Reference Wiki

"clearly marked experimental"

operator-xor

The ^ operator yields the bitwise XOR (exclusive OR) of its arguments, which must be plain or long integers. The arguments are converted to a common type.

To support this operator in your own classes, implement the __xor__ method.