asyncio: Make tests pass on Windows.
diff --git a/Lib/asyncio/streams.py b/Lib/asyncio/streams.py
index 698c5c6..27d595f 100644
--- a/Lib/asyncio/streams.py
+++ b/Lib/asyncio/streams.py
@@ -2,12 +2,14 @@
 
 __all__ = ['StreamReader', 'StreamWriter', 'StreamReaderProtocol',
            'open_connection', 'start_server',
-           'open_unix_connection', 'start_unix_server',
            'IncompleteReadError',
            ]
 
 import socket
 
+if hasattr(socket, 'AF_UNIX'):
+    __all__.extend(['open_unix_connection', 'start_unix_server'])
+
 from . import events
 from . import futures
 from . import protocols