(*mixed: Any, **kwargs: Any)
| 586 | return {} |
| 587 | |
| 588 | def _initialize_instance(*mixed: Any, **kwargs: Any) -> None: |
| 589 | self, instance, args = mixed[0], mixed[1], mixed[2:] # noqa |
| 590 | manager = self.manager |
| 591 | |
| 592 | manager.dispatch.init(self, args, kwargs) |
| 593 | |
| 594 | try: |
| 595 | manager.original_init(*mixed[1:], **kwargs) |
| 596 | except: |
| 597 | with util.safe_reraise(): |
| 598 | manager.dispatch.init_failure(self, args, kwargs) |
| 599 | |
| 600 | def get_history(self, key: str, passive: PassiveFlag) -> History: |
| 601 | return self.manager[key].impl.get_history(self, self.dict, passive) |
nothing calls this directly
no test coverage detected