Alias for intercept_reduce_call.
(self, callable_obj, args, **kwargs)
| 415 | |
| 416 | # Hook aliases |
| 417 | def check_reduce_callable(self, callable_obj, args, **kwargs): |
| 418 | """Alias for intercept_reduce_call.""" |
| 419 | return self.intercept_reduce_call(callable_obj, args, **kwargs) |
| 420 | |
| 421 | def inspect_reduced_object(self, obj, **kwargs): |
| 422 | """Inspect and validate an object after __reduce__ protocol reconstruction. |
nothing calls this directly
no test coverage detected