diff options
author | Guido van Rossum <guido@python.org> | 2014-02-18 18:24:30 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2014-02-18 18:24:30 (GMT) |
commit | e3e786c96311e8926c58240cace075360033f9ca (patch) | |
tree | 807f3ade98dac063ec872b2894dd5e82190459ad /Lib/asyncio | |
parent | 026019f89bf6669593d458dfa3ad9fc7b8d78bc2 (diff) | |
download | cpython-e3e786c96311e8926c58240cace075360033f9ca.zip cpython-e3e786c96311e8926c58240cace075360033f9ca.tar.gz cpython-e3e786c96311e8926c58240cace075360033f9ca.tar.bz2 |
asyncio: Make tests pass on Windows.
Diffstat (limited to 'Lib/asyncio')
-rw-r--r-- | Lib/asyncio/streams.py | 4 |
1 files changed, 3 insertions, 1 deletions
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 |