(self)
| 129 | self.factory(-1) |
| 130 | |
| 131 | def test_large_ints_rejected(self): |
| 132 | msg = "%d (>= 2**32) is not permitted as an IPv4 address" |
| 133 | with self.assertAddressError(re.escape(msg % 2**32)): |
| 134 | self.factory(2**32) |
| 135 | |
| 136 | def test_bad_packed_length(self): |
| 137 | def assertBadLength(length): |
nothing calls this directly
no test coverage detected