@functools.total_ordering Given a class defining one or more rich comparison ordering methods, this class decorator supplies
operator.__mod__(a, b) Return a % b.
operator.is_(a, b) Return a is b. Tests object identity.
operator.__iadd__(a, b) a = iadd(a, b) is equivalent to a += b.
operator.imod(a, b) operator.__imod__(a, b) a = imod(a, b) is equivalent to a %= b.
operator.index(a) operator.__index__(a) Return a converted to an integer. Equivalent to a.__index__()
operator.or_(a, b) operator.__or__(a, b) Return the bitwise or of a and b.
operator.__lt__(a, b) operator.__le__(a, b) operator.__eq__(a, b) operator
operator.iconcat(a, b) operator.__iconcat__(a, b) a = iconcat(a, b) is equivalent to a += b
operator.countOf(a, b) Return the number of occurrences of b in a.
Page 9 of 13