Clear maps[0], leaving maps[1:] intact.
(self)
| 1142 | raise KeyError(f'Key not found in the first mapping: {key!r}') |
| 1143 | |
| 1144 | def clear(self): |
| 1145 | 'Clear maps[0], leaving maps[1:] intact.' |
| 1146 | self.maps[0].clear() |
| 1147 | |
| 1148 | def __ior__(self, other): |
| 1149 | self.maps[0].update(other) |
no outgoing calls
no test coverage detected