operator.mod(a, b) operator.__mod__(a, b) Return a % b.
partial.func A callable object or function. Calls to the partial object will be forwarded to func
operator.__iand__(a, b) a = iand(a, b) is equivalent to a &= b.
operator.isub(a, b) operator.__isub__(a, b) a = isub(a, b) is equivalent to a -= b.
operator.itruediv(a, b) operator.__itruediv__(a, b) a = itruediv(a, b) is equivalent to a /=
operator.setitem(a, b, c) operator.__setitem__(a, b, c) Set the value of a at index b to c
operator.ior(a, b) operator.__ior__(a, b) a = ior(a, b) is equivalent to a |= b.
operator.delitem(a, b) operator.__delitem__(a, b) Remove the value of a at index b.
operator.__lshift__(a, b) Return a shifted left by b.
functools.update_wrapper(wrapper, wrapped, assigned=WRAPPER_ASSIGNMENTS, updated=WRAPPER_UPDATES) Update a wrapper
Page 11 of 13