(self, state: Dict[str, Any])
| 1603 | return d |
| 1604 | |
| 1605 | def __setstate__(self, state: Dict[str, Any]) -> None: |
| 1606 | state["path"] = PathRegistry.deserialize(state["path"]) |
| 1607 | self._shallow_from_dict(state) |
| 1608 | |
| 1609 | def _raise_for_no_match(self, parent_loader, mapper_entities): |
| 1610 | path = parent_loader.path |
nothing calls this directly
no test coverage detected