mirror of
https://github.com/python/cpython.git
synced 2025-11-02 06:31:29 +00:00
Backout e3ec6b17260c after Guido's fix
This commit is contained in:
parent
32e46850a1
commit
c1b78419e6
1 changed files with 2 additions and 2 deletions
|
|
@ -17,7 +17,7 @@
|
||||||
import errno
|
import errno
|
||||||
import unittest
|
import unittest
|
||||||
import unittest.mock
|
import unittest.mock
|
||||||
from test.support import find_unused_port, IPV6_ENABLED
|
from test.support import find_unused_port
|
||||||
|
|
||||||
|
|
||||||
from asyncio import futures
|
from asyncio import futures
|
||||||
|
|
@ -687,7 +687,7 @@ def test_create_server_addr_in_use(self):
|
||||||
|
|
||||||
server.close()
|
server.close()
|
||||||
|
|
||||||
@unittest.skipUnless(IPV6_ENABLED, 'IPv6 not supported or enabled')
|
@unittest.skipUnless(socket.has_ipv6, 'IPv6 not supported')
|
||||||
def test_create_server_dual_stack(self):
|
def test_create_server_dual_stack(self):
|
||||||
f_proto = futures.Future(loop=self.loop)
|
f_proto = futures.Future(loop=self.loop)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue