operator.__imatmul__(a, b) a = imatmul(a, b) is equivalent to a @= b.
operator.__contains__(a, b) Return the outcome of the test b in a. Note the reversed operands.
functools.update_wrapper(wrapper, wrapped, assigned=WRAPPER_ASSIGNMENTS, updated=WRAPPER_UPDATES) Update a wrapper
operator.ior(a, b) operator.__ior__(a, b) a = ior(a, b) is equivalent to a |= b.
operator.__gt__(a, b) Perform “rich comparisons” between a and b. Specifically, lt(a, b) is equivalent
functools.cmp_to_key(func) Transform an old-style comparison function to a key function
partial.args The leftmost positional arguments that will be prepended to the positional arguments provided to a partial
operator.__ge__(a, b) operator.__gt__(a, b) Perform “rich comparisons” between a and b. Specifically
operator.lt(a, b) operator.le(a, b) operator.eq(a, b) operator
itertools.dropwhile(predicate, iterable) Make an iterator that drops elements from the iterable as long as the predicate is
Page 12 of 13