From: Kenneth Reitz Date: Sat, 12 Nov 2011 21:39:18 +0000 (-0500) Subject: use new collections MutableMutex X-Git-Tag: v0.8.0~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e84d84b5b8660efa66feb66564683628944505bb;p=services%2Fpython-requests.git use new collections MutableMutex --- diff --git a/requests/packages/urllib3/_collections.py b/requests/packages/urllib3/_collections.py index e73f0ed..912c866 100755 --- a/requests/packages/urllib3/_collections.py +++ b/requests/packages/urllib3/_collections.py @@ -4,10 +4,12 @@ # This module is part of urllib3 and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php -from collections import deque, MutableMapping +from collections import deque from threading import RLock +from .__collections import MutableMapping + __all__ = ['RecentlyUsedContainer']