(
self, instance: Any, passive: PassiveFlag = PASSIVE_OFF
)
| 258 | return self.impl.uses_objects |
| 259 | |
| 260 | def get_history( |
| 261 | self, instance: Any, passive: PassiveFlag = PASSIVE_OFF |
| 262 | ) -> History: |
| 263 | return self.impl.get_history( |
| 264 | instance_state(instance), instance_dict(instance), passive |
| 265 | ) |
| 266 | |
| 267 | @property |
| 268 | def info(self) -> _InfoType: |
nothing calls this directly
no test coverage detected