Kaydet (Commit) e3e786c9 authored tarafından Guido van Rossum's avatar Guido van Rossum

asyncio: Make tests pass on Windows.

üst 026019f8
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment