operator.__abs__(obj) Return the absolute value of obj.
operator.not_(obj) operator.__not__(obj) Return the outcome of not obj. (Note that there is
operator.iconcat(a, b) operator.__iconcat__(a, b) a = iconcat(a, b) is equivalent to a += b
operator.index(a) operator.__index__(a) Return a converted to an integer. Equivalent to a.__index__()
operator.and_(a, b) operator.__and__(a, b) Return the bitwise and of a and b.
operator.attrgetter(attr) operator.attrgetter(*attrs) Return a callable object that fetches attr from its
operator.or_(a, b) operator.__or__(a, b) Return the bitwise or of a and b.
@functools.total_ordering Given a class defining one or more rich comparison ordering methods, this class decorator supplies
operator.__le__(a, b) operator.__eq__(a, b) operator.__ne__(a, b) operator
operator.__imul__(a, b) a = imul(a, b) is equivalent to a *= b.
Page 7 of 13