diff options
author | Raymond Hettinger <python@rcn.com> | 2011-02-26 01:02:51 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-02-26 01:02:51 (GMT) |
commit | 9fe1ccfb5ac8c38be1439151712d3a8b3e7d87f2 (patch) | |
tree | edf92add219a4a427b21157a626f1c0520fd644f /Lib/collections | |
parent | 692f038a5dad826254fe73050063862d76dc7baa (diff) | |
download | cpython-9fe1ccfb5ac8c38be1439151712d3a8b3e7d87f2.zip cpython-9fe1ccfb5ac8c38be1439151712d3a8b3e7d87f2.tar.gz cpython-9fe1ccfb5ac8c38be1439151712d3a8b3e7d87f2.tar.bz2 |
Issue #11297: Add collections.ChainMap()
Diffstat (limited to 'Lib/collections')
-rw-r--r-- | Lib/collections/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 4317535..aab5aee 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. |