(self, op, other, **kwargs)
| 1348 | return op(elem, *other, **kwargs) |
| 1349 | |
| 1350 | def reverse_operate(self, op, other, **kwargs): |
| 1351 | elem = object.__getattribute__(self, "_py_wrapper_literal")() |
| 1352 | return op(other, elem, **kwargs) |
| 1353 | |
| 1354 | def _extract_bound_parameters(self, starting_point, result_list): |
| 1355 | param = object.__getattribute__(self, "_param") |
nothing calls this directly
no test coverage detected