trust built-in if its available

This commit is contained in:
Kenneth Reitz
2011-11-12 16:49:08 -05:00
parent 2584c48e8d
commit 3462d9c87b
+4 -1
View File
@@ -8,7 +8,10 @@
from collections import deque
from threading import RLock
from .__collections import MutableMapping
try:
from collections import MutableMapping
except ImportError:
from .__collections import MutableMapping
__all__ = ['RecentlyUsedContainer']