Commit 963346da authored by Jason Madden's avatar Jason Madden

Fix test__all__ under Py3.4.2.

parent 6e48b5c0
......@@ -391,6 +391,8 @@ if sys.version_info[:2] == (3, 4) and sys.version_info[:3] <= (3, 4, 2):
# seems like it could lead to non-green behaviour, code on those versions
# cannot possibly be using SocketType as a class anyway.
SocketType = __socket__.SocketType
__implements__.remove('SocketType')
__imports__.append('SocketType')
else:
SocketType = socket
......
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