PCQRSCANER/venv/Lib/site-packages/future/moves/_thread.py

9 lines
163 B
Python
Raw Normal View History

2019-12-22 21:51:47 +01:00
from __future__ import absolute_import
from future.utils import PY3
if PY3:
from _thread import *
else:
__future_module__ = True
from thread import *