(self, key, *default)
| 226 | self.maps.insert(1, d) |
| 227 | |
| 228 | def pop(self, key, *default): |
| 229 | # type: (Any, *Any) -> Any |
| 230 | try: |
| 231 | return self.maps[0].pop(key, *default) |
| 232 | except KeyError: |
| 233 | raise KeyError( |
| 234 | f'Key not found in the first mapping: {key!r}') |
| 235 | |
| 236 | def __missing__(self, key): |
| 237 | # type: (Any) -> Any |
no outgoing calls
no test coverage detected