def is_bound_method(method): """Returns if the given method is bound to an object.""" return get_method_self(method) is not None