diff options
| author | Raymond Hettinger <python@rcn.com> | 2011-02-26 01:02:51 +0000 |
|---|---|---|
| committer | Raymond Hettinger <python@rcn.com> | 2011-02-26 01:02:51 +0000 |
| commit | 9fe1ccfb5ac8c38be1439151712d3a8b3e7d87f2 (patch) | |
| tree | edf92add219a4a427b21157a626f1c0520fd644f /Lib/collections | |
| parent | 692f038a5dad826254fe73050063862d76dc7baa (diff) | |
| download | cpython-git-9fe1ccfb5ac8c38be1439151712d3a8b3e7d87f2.tar.gz | |
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 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. |
