summaryrefslogtreecommitdiff
path: root/Lib/reprlib.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-10-11 18:51:53 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2011-10-11 18:51:53 +0200
commitbb0ad4cfa17a027e0416d6cafdea9387881c5614 (patch)
treee5d240c4d2519e5150fb6e94dcd7ee1f0dd67b38 /Lib/reprlib.py
parentdc567e42f7f3c22bce09275611dfc1a4a1f7ebde (diff)
downloadcpython-git-bb0ad4cfa17a027e0416d6cafdea9387881c5614.tar.gz
Avoid pulling threading when _thread is sufficient
Diffstat (limited to 'Lib/reprlib.py')
-rw-r--r--Lib/reprlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/reprlib.py b/Lib/reprlib.py
index 092874a18f..f8033604da 100644
--- a/Lib/reprlib.py
+++ b/Lib/reprlib.py
@@ -5,7 +5,7 @@ __all__ = ["Repr", "repr", "recursive_repr"]
import builtins
from itertools import islice
try:
- from threading import get_ident
+ from _thread import get_ident
except ImportError:
from _dummy_thread import get_ident