Commit 97d64ff4 authored by Denis Bilenko's avatar Denis Bilenko

socket.py: pep8 fix on python3 #38

parent 08570bf3
......@@ -511,7 +511,7 @@ class socket(object):
_s = ("def %s(self, *args): return self._sock.%s(*args)\n\n"
"%s.__doc__ = _realsocket.%s.__doc__\n")
for _m in set(__socket__._socketmethods) - set(locals()):
exec (_s % (_m, _m, _m, _m))
exec(_s % (_m, _m, _m, _m))
del _m, _s
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