[Python-checkins] cpython: asyncio: ops, and now fix also the unit test for IPv6 address:

victor.stinner python-checkins at python.org
Thu Feb 20 17:01:21 CET 2014


http://hg.python.org/cpython/rev/03b14690a9be
changeset:   89304:03b14690a9be
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Thu Feb 20 17:01:11 2014 +0100
summary:
  asyncio: ops, and now fix also the unit test for IPv6 address:
test_sock_connect_address()

files:
  Lib/test/test_asyncio/test_events.py |  7 +++----
  1 files changed, 3 insertions(+), 4 deletions(-)


diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -1335,12 +1335,11 @@
              'selector': self.loop._selector.__class__.__name__})
 
     def test_sock_connect_address(self):
-        families = [socket.AF_INET]
+        families = [(socket.AF_INET, ('www.python.org', 80))]
         if support.IPV6_ENABLED:
-            families.append(socket.AF_INET6)
+            families.append((socket.AF_INET6, ('www.python.org', 80, 0, 0)))
 
-        address = ('www.python.org', 80)
-        for family in families:
+        for family, address in families:
             for sock_type in (socket.SOCK_STREAM, socket.SOCK_DGRAM):
                 sock = socket.socket(family, sock_type)
                 with sock:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list