From 86cff8096dac6c8b8aeaa32ee16c52fa513076f1 Mon Sep 17 00:00:00 2001 From: Mahmoud Hashemi Date: Wed, 18 Nov 2015 00:14:43 -0800 Subject: [PATCH] cacheutils: pull RLock from the right place for python 2 --- boltons/cacheutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boltons/cacheutils.py b/boltons/cacheutils.py index 7c277a1..d7dad4e 100644 --- a/boltons/cacheutils.py +++ b/boltons/cacheutils.py @@ -39,7 +39,7 @@ import itertools from collections import deque try: - from _thread import RLock + from threading import RLock except: class RLock(object): 'Dummy reentrant lock for builds without threads'