Commit 46e5b9b6 authored by Denis Bilenko's avatar Denis Bilenko

os.py: do not import gevent.socket

since gevent.os is imported in __init__.py this makes gevent.socket imported in __init__.py which was never the intention.
parent f0b8be81
......@@ -9,9 +9,10 @@ from __future__ import absolute_import
import os
import sys
from gevent.hub import get_hub, reinit
from gevent.socket import EAGAIN
import errno
EAGAIN = getattr(errno, 'EAGAIN', 11)
try:
import fcntl
except ImportError:
......
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