(cls, netmask_str)
| 460 | |
| 461 | @classmethod |
| 462 | def _report_invalid_netmask(cls, netmask_str): |
| 463 | msg = '%r is not a valid netmask' % netmask_str |
| 464 | raise NetmaskValueError(msg) from None |
| 465 | |
| 466 | @classmethod |
| 467 | def _prefix_from_prefix_string(cls, prefixlen_str): |
no test coverage detected