(
self, state: Union[Dict[str, int], Dict[str, str]]
)
| 882 | return dict(self) |
| 883 | |
| 884 | def __setstate__( |
| 885 | self, state: Union[Dict[str, int], Dict[str, str]] |
| 886 | ) -> None: |
| 887 | self.update(state) |
| 888 | |
| 889 | |
| 890 | class MutableList(Mutable, List[_T]): |