(self, **kw: Any)
| 1593 | return s |
| 1594 | |
| 1595 | def _update_opts(self, **kw: Any) -> _LoadElement: |
| 1596 | new = self._clone() |
| 1597 | new.local_opts = new.local_opts.union(kw) |
| 1598 | return new |
| 1599 | |
| 1600 | def __getstate__(self) -> Dict[str, Any]: |
| 1601 | d = self._shallow_to_dict() |