(self, key, value)
| 1082 | return self._global_mapping[key] |
| 1083 | |
| 1084 | def __setitem__(self, key, value): |
| 1085 | # Allow local update of the default functions without impacting other instances |
| 1086 | self._local_mapping.update({key: value}) |
| 1087 | |
| 1088 | def __delitem__(self, key): |
| 1089 | del self._local_mapping[key] |