Alias for inspect_reduced_object.
(self, obj, **kwargs)
| 466 | |
| 467 | # Hook aliases |
| 468 | def check_restored_reduced_object(self, obj, **kwargs): |
| 469 | """Alias for inspect_reduced_object.""" |
| 470 | return self.inspect_reduced_object(obj, **kwargs) |
| 471 | |
| 472 | def intercept_setstate(self, obj, state, **kwargs): |
| 473 | """Intercept and validate __setstate__ protocol before state restoration. |
nothing calls this directly
no test coverage detected