(self)
| 602 | return '%s(%r)' % (self.__class__.__name__, str(self)) |
| 603 | |
| 604 | def __str__(self): |
| 605 | return str(self._string_from_ip_int(self._ip)) |
| 606 | |
| 607 | def __hash__(self): |
| 608 | return hash(hex(int(self._ip))) |
nothing calls this directly
no test coverage detected