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