(self)
| 168 | self.factory(-1) |
| 169 | |
| 170 | def test_large_ints_rejected(self): |
| 171 | msg = "%d (>= 2**128) is not permitted as an IPv6 address" |
| 172 | with self.assertAddressError(re.escape(msg % 2**128)): |
| 173 | self.factory(2**128) |
| 174 | |
| 175 | def test_bad_packed_length(self): |
| 176 | def assertBadLength(length): |
nothing calls this directly
no test coverage detected