(self)
| 66 | return self |
| 67 | |
| 68 | def __call__(self): |
| 69 | obj = super().__call__() |
| 70 | func = self._func_ref() |
| 71 | if obj is None or func is None: |
| 72 | return None |
| 73 | return self._meth_type(func, obj) |
| 74 | |
| 75 | def __eq__(self, other): |
| 76 | if isinstance(other, WeakMethod): |