New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:]
(self)
| 1056 | return cls(dict.fromkeys(iterable, value)) |
| 1057 | |
| 1058 | def copy(self): |
| 1059 | 'New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:]' |
| 1060 | return self.__class__(self.maps[0].copy(), *self.maps[1:]) |
| 1061 | |
| 1062 | __copy__ = copy |
| 1063 |