(self)
| 5344 | "IPV6_V6ONLY option not supported") |
| 5345 | @unittest.skipUnless(socket_helper.IPV6_ENABLED, 'IPv6 required for this test') |
| 5346 | def test_ipv6(self): |
| 5347 | cli, srv = socket.socketpair(socket.AF_INET6) |
| 5348 | cli.close() |
| 5349 | srv.close() |
| 5350 | |
| 5351 | def _test_ipv6(self): |
| 5352 | pass |
nothing calls this directly
no test coverage detected