(self, args, kwargs)
| 2611 | return self.weakrefself_target__() |
| 2612 | |
| 2613 | def call(self, args, kwargs): |
| 2614 | wrapped_fn = self.weakrefself_func__() |
| 2615 | if tf_inspect.ismethod(wrapped_fn): |
| 2616 | wrapped_fn = six.get_unbound_function(wrapped_fn) |
| 2617 | return wrapped_fn(self.weakrefself_target__(), *args, **kwargs) |
| 2618 | |
| 2619 | |
| 2620 | def class_method_to_instance_method(original_function, instance): |
no test coverage detected