Update the dict from a mapping.
(self, other: Mapping[K, V])
| 769 | _ffi_api.DictClear(self) |
| 770 | |
| 771 | def update(self, other: Mapping[K, V]) -> None: # type: ignore[override] |
| 772 | """Update the dict from a mapping.""" |
| 773 | for k, v in other.items(): |
| 774 | self[k] = v |