1from __future__ import absolute_import
2from future.utils import PY3
3
4if PY3:
5    from _thread import *
6else:
7    __future_module__ = True
8    from thread import *
9