(self, other)
| 80 | return NotImplemented |
| 81 | |
| 82 | def __ne__(self, other): |
| 83 | if isinstance(other, WeakMethod): |
| 84 | if not self._alive or not other._alive: |
| 85 | return self is not other |
| 86 | return ref.__ne__(self, other) or self._func_ref != other._func_ref |
| 87 | return NotImplemented |
| 88 | |
| 89 | __hash__ = ref.__hash__ |
| 90 |
no test coverage detected