Alias for intercept_setstate.
(self, obj, state, **kwargs)
| 526 | |
| 527 | # Hook alias |
| 528 | def check_setstate(self, obj, state, **kwargs): |
| 529 | """Alias for intercept_setstate.""" |
| 530 | return self.intercept_setstate(obj, state, **kwargs) |
| 531 | |
| 532 | |
| 533 | DEFAULT_POLICY = DeserializationPolicy() |
nothing calls this directly
no test coverage detected