We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aac65c1 commit 09e17d4Copy full SHA for 09e17d4
src/_thread/__init__.py
@@ -3,10 +3,7 @@
3
__future_module__ = True
4
5
if sys.version_info[0] < 3:
6
- try:
7
- from thread import *
8
- except ImportError:
9
- from dummy_thread import *
+ from thread import *
10
else:
11
raise ImportError('This package should not be accessible on Python 3. '
12
'Either you are trying to run from the python-future src folder '
0 commit comments