mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 22:50:18 +00:00
trust built-in if its available
This commit is contained in:
@@ -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']
|
||||
|
||||
|
||||
Reference in New Issue
Block a user