Merge pull request #2 from MeilleursAgents/fix_thread_module_import

Fix `thread` module import on Python 2.7
This commit is contained in:
ENDOH takanao 2015-07-11 09:17:49 +07:00
commit 92ae05553b
4 changed files with 8 additions and 5 deletions

View File

@ -6,7 +6,10 @@ not need to be rewritten for when the thread module is not present.
Suggested usage is::
try:
import _thread
try:
import _thread # Python >= 3
except:
import thread as _thread # Python < 3
except ImportError:
import _dummy_thread as _thread

View File

@ -17,8 +17,8 @@ from .reprlib32 import recursive_repr as _recursive_repr
from weakref import proxy as _proxy
import sys as _sys
try:
from _thread import allocate_lock as Lock
except:
from thread import allocate_lock as Lock
except ImportError:
from ._dummy_thread32 import allocate_lock as Lock
################################################################################

View File

@ -5,7 +5,7 @@ __all__ = ["Repr", "repr", "recursive_repr"]
import __builtin__ as builtins
from itertools import islice
try:
from _thread import get_ident
from thread import get_ident
except ImportError:
from _dummy_thread32 import get_ident

View File

@ -11,7 +11,7 @@ def main():
setup(
name='functools32',
version='3.2.3-1',
version='3.2.3-2',
description='Backport of the functools module from Python 3.2.3 for use on 2.7 and PyPy.',
long_description="""
This is a backport of the functools standard library module from