(
state: InstanceState[_O],
dict_: _InstanceDict,
row: Row[Unpack[TupleAny]],
)
| 704 | fixed_impl = impl |
| 705 | |
| 706 | def _set_callable( |
| 707 | state: InstanceState[_O], |
| 708 | dict_: _InstanceDict, |
| 709 | row: Row[Unpack[TupleAny]], |
| 710 | ) -> None: |
| 711 | if "callables" not in state.__dict__: |
| 712 | state.callables = {} |
| 713 | old = dict_.pop(key, None) |
| 714 | if old is not None: |
| 715 | fixed_impl._invalidate_collection(old) |
| 716 | state.callables[key] = fn |
| 717 | |
| 718 | else: |
| 719 |
nothing calls this directly
no test coverage detected