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