(self, from_: InstanceState[Any])
| 692 | self.callables.pop(key, None) |
| 693 | |
| 694 | def _copy_callables(self, from_: InstanceState[Any]) -> None: |
| 695 | if "callables" in from_.__dict__: |
| 696 | self.callables = dict(from_.callables) |
| 697 | |
| 698 | @classmethod |
| 699 | def _instance_level_callable_processor( |