Commit 23683507 authored by Jason Madden's avatar Jason Madden

typo

parent 11651ac9
...@@ -392,7 +392,7 @@ if sys.version_info[:2] == (3, 4) and sys.version_info[:3] <= (3, 4, 2): ...@@ -392,7 +392,7 @@ if sys.version_info[:2] == (3, 4) and sys.version_info[:3] <= (3, 4, 2):
# cannot possibly be using SocketType as a class anyway. # cannot possibly be using SocketType as a class anyway.
SocketType = __socket__.SocketType SocketType = __socket__.SocketType
# Fixup __all__; note that we get exec'd multiple times during unit tests # Fixup __all__; note that we get exec'd multiple times during unit tests
if 'SocketType' in __implements: if 'SocketType' in __implements__:
__implements__.remove('SocketType') __implements__.remove('SocketType')
if 'SocketType' not in __imports__: if 'SocketType' not in __imports__:
__imports__.append('SocketType') __imports__.append('SocketType')
......
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