| 4347 | """Test that state serialization will fall back to dill.""" |
| 4348 | |
| 4349 | class DillState(BaseState): |
| 4350 | _o: Obj | None = None |
| 4351 | _f: Callable | None = None |
| 4352 | _g: Any = None |
| 4353 | |
| 4354 | state = DillState(_reflex_internal_init=True) # pyright: ignore [reportCallIssue] |
| 4355 | state._o = Obj(f=lambda: 42) |
no outgoing calls