Commit 3ab3f4a7 authored by Denis Bilenko's avatar Denis Bilenko

import getfqdn into gevent.socket

parent 4ace28a6
......@@ -92,6 +92,9 @@ for name in __socket__.__all__:
if isinstance(value, (int, basestring)):
globals()[name] = value
__all__.append(name)
elif name == 'getfqdn':
globals()[name] = getattr(__socket__, name)
__all__.append(name)
del name, value
......
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