commit | a90e8edaea8761abf7c4820e01409b94a4044049 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Thu Feb 20 21:59:38 2014 +0100 |
committer | Victor Stinner <victor.stinner@gmail.com> | Thu Feb 20 21:59:38 2014 +0100 |
tree | 07f3dcb46702ce3a7814c783b600517c482c8e84 | |
parent | 35669ae77ef4c501f09b1620bd3137dd5931868c [diff] |
asyncio: _check_resolved_address() must also accept IPv6 without flow_info and scope_id: (host, port).
diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py index 1615ecb..80df927 100644 --- a/Lib/asyncio/base_events.py +++ b/Lib/asyncio/base_events.py
@@ -48,7 +48,7 @@ if family == socket.AF_INET: host, port = address elif family == socket.AF_INET6: - host, port, flow_info, scope_id = address + host, port = address[:2] else: return