insert an item into the dictionary directly.
(self, key: _KT, value: _VT)
| 140 | return FacadeDict, (dict(self),) |
| 141 | |
| 142 | def _insert_item(self, key: _KT, value: _VT) -> None: |
| 143 | """insert an item into the dictionary directly.""" |
| 144 | dict.__setitem__(self, key, value) |
| 145 | |
| 146 | def __repr__(self) -> str: |
| 147 | return "FacadeDict(%s)" % dict.__repr__(self) |