From e3e786c96311e8926c58240cace075360033f9ca Mon Sep 17 00:00:00 2001
From: Guido van Rossum <guido@python.org>
Date: Tue, 18 Feb 2014 10:24:30 -0800
Subject: asyncio: Make tests pass on Windows.

---
 Lib/asyncio/streams.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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
-- 
cgit v0.12