Commit 2e5d2019 authored by Denis Bilenko's avatar Denis Bilenko

fix imports with regard to _NONE

parent 18e77803
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
import sys import sys
import traceback import traceback
from gevent import core from gevent import core
from gevent.hub import get_hub, getcurrent from gevent.hub import get_hub, getcurrent, _NONE
from gevent.timeout import Timeout, _NONE from gevent.timeout import Timeout
__all__ = ['Event', 'AsyncResult'] __all__ = ['Event', 'AsyncResult']
......
...@@ -20,8 +20,8 @@ import heapq ...@@ -20,8 +20,8 @@ import heapq
import collections import collections
from Queue import Full, Empty from Queue import Full, Empty
from gevent.timeout import Timeout, _NONE from gevent.timeout import Timeout
from gevent.hub import get_hub, Waiter, getcurrent from gevent.hub import get_hub, Waiter, getcurrent, _NONE
from gevent import core from gevent import core
......
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