asyncio: _check_resolved_address() must also accept IPv6 without flow_info and

scope_id: (host, port).
This commit is contained in:
Victor Stinner 2014-02-20 21:59:38 +01:00
parent 35669ae77e
commit a90e8edaea
2 changed files with 7 additions and 4 deletions

View file

@ -48,7 +48,7 @@ def _check_resolved_address(sock, address):
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