summaryrefslogtreecommitdiff
path: root/Lib/collections
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-02-26 01:02:51 +0000
committerRaymond Hettinger <python@rcn.com>2011-02-26 01:02:51 +0000
commit9fe1ccfb5ac8c38be1439151712d3a8b3e7d87f2 (patch)
treeedf92add219a4a427b21157a626f1c0520fd644f /Lib/collections
parent692f038a5dad826254fe73050063862d76dc7baa (diff)
downloadcpython-git-9fe1ccfb5ac8c38be1439151712d3a8b3e7d87f2.tar.gz
Issue #11297: Add collections.ChainMap()
Diffstat (limited to 'Lib/collections')
-rw-r--r--Lib/collections/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
index 4317535e87..aab5aeece0 100644
--- a/Lib/collections/__init__.py
+++ b/Lib/collections/__init__.py
@@ -636,7 +636,7 @@ class Counter(dict):
### ChainMap (helper for configparser and string.Template)
########################################################################
-class _ChainMap(MutableMapping):
+class ChainMap(MutableMapping):
''' A ChainMap groups multiple dicts (or other mappings) together
to create a single, updateable view.