(self)
| 5241 | "IPV6_V6ONLY option not supported") |
| 5242 | @unittest.skipUnless(socket_helper.IPV6_ENABLED, 'IPv6 required for this test') |
| 5243 | def test_ipv6(self): |
| 5244 | cli, srv = socket.socketpair(socket.AF_INET6) |
| 5245 | cli.close() |
| 5246 | srv.close() |
| 5247 | |
| 5248 | def _test_ipv6(self): |
| 5249 | pass |
nothing calls this directly
no test coverage detected