(self)
| 163 | self.assertInstancesEqual(addr, "c0a8:1::") |
| 164 | |
| 165 | def test_negative_ints_rejected(self): |
| 166 | msg = "-1 (< 0) is not permitted as an IPv6 address" |
| 167 | with self.assertAddressError(re.escape(msg)): |
| 168 | self.factory(-1) |
| 169 | |
| 170 | def test_large_ints_rejected(self): |
| 171 | msg = "%d (>= 2**128) is not permitted as an IPv6 address" |
nothing calls this directly
no test coverage detected