use new collections MutableMutex

This commit is contained in:
Kenneth Reitz
2011-11-12 16:39:18 -05:00
parent cfc1a76381
commit e84d84b5b8
+3 -1
View File
@@ -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']