(self)
| 1428 | return self.network.hostmask |
| 1429 | |
| 1430 | def __str__(self): |
| 1431 | return '%s/%d' % (self._string_from_ip_int(self._ip), |
| 1432 | self._prefixlen) |
| 1433 | |
| 1434 | def __eq__(self, other): |
| 1435 | address_equal = IPv4Address.__eq__(self, other) |
nothing calls this directly
no test coverage detected