Lines Matching refs:ChainMap
7 * ChainMap dict-like class for creating a single view of multiple mappings
18 'ChainMap',
971 ### ChainMap
974 class ChainMap(_collections_abc.MutableMapping):
975 ''' A ChainMap groups multiple dicts (or other mappings) together
989 '''Initialize a ChainMap by setting *maps* to the given mappings.
1030 'Create a ChainMap with a single dict created from the iterable.'
1034 'New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:]'
1040 '''New ChainMap with a new map followed by all previous maps.
1052 'New ChainMap from maps[1:].'