(self, other)
| 1402 | return ctypes.addressof(self.handle.contents) == ctypes.addressof(other.handle.contents) |
| 1403 | |
| 1404 | def __ne__(self, other): |
| 1405 | if not isinstance(other, self.__class__): |
| 1406 | return NotImplemented |
| 1407 | return not (self == other) |
| 1408 | |
| 1409 | def __hash__(self): |
| 1410 | return hash(ctypes.addressof(self.handle.contents)) |
nothing calls this directly
no outgoing calls
no test coverage detected