Home
last modified time | relevance | path

Searched refs:__ixor__ (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Lib/
D_weakrefset.py189 self.__ixor__(other)
190 def __ixor__(self, other): member in WeakSet
Dsets.py451 def __ixor__(self, other): member in Set
D_abcoll.py338 def __ixor__(self, it): member in MutableSet
/external/python/cpython2/Lib/test/
Dtest_augassign.py211 def __ixor__(self, val): member in AugAssignTest.testCustomMethods2.testall
Dtest_operator.py488 def __ixor__ (self, other): return "ixor" member in OperatorTestCase.test_inplace.C
518 self.assertEqual(operator.__ixor__ (c, 5), "ixor")
/external/python/cpython2/Modules/
Doperator.c416 spam2(ixor,__ixor__, "a = ixor(a, b) -- Same as a ^= b.")
/external/python/cpython2/Doc/library/
Doperator.rst437 __ixor__(a, b)
Dcollections.rst919 … ``__len__``, ``__iand__``, ``__ixor__``, and ``__isub__``
/external/python/cpython2/Misc/
Dcheatsheet1197 s^=o = __ixor__(s,o) s|=o = __ior__(s,o)
/external/python/cpython2/Doc/reference/
Ddatamodel.rst2174 object.__ixor__(self, other)