operator.__ilshift__(a, b) a = ilshift(a, b) is equivalent to a <<= b.
operator.not_(obj) operator.__not__(obj) Return the outcome of not obj. (Note that there is
operator.and_(a, b) operator.__and__(a, b) Return the bitwise and of a and b.
operator.truth(obj) Return
operator.__imul__(a, b) a = imul(a, b) is equivalent to a *= b.
operator.__sub__(a, b) Return a - b.
operator.attrgetter(attr) operator.attrgetter(*attrs) Return a callable object that fetches attr from its
operator.is_not(a, b) Return a is not b. Tests object identity.
operator.imatmul(a, b) operator.__imatmul__(a, b) a = imatmul(a, b) is equivalent to a @= b
operator.__getitem__(a, b) Return the value of a at index b.
Page 8 of 13