blob: cb6342052da1a43f2db279c503ccb0a2f152099a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- unittest2/compatibility.py.orig 2014-10-29 10:51:58 UTC
+++ unittest2/compatibility.py
@@ -140,7 +140,7 @@ except ImportError:
### ChainMap (helper for configparser and string.Template)
########################################################################
-class ChainMap(collections.MutableMapping):
+class ChainMap(collections.abc.MutableMapping):
''' A ChainMap groups multiple dicts (or other mappings) together
to create a single, updateable view.
|