(self, other)
| 525 | |
| 526 | def _make_rbinop(op: ast.AST): |
| 527 | def rbinop(self, other): |
| 528 | new_other, extra_names = self.__convert_to_ast(other) |
| 529 | return self.__make_new( |
| 530 | ast.BinOp(new_other, op, self.__get_ast()), extra_names |
| 531 | ) |
| 532 | |
| 533 | return rbinop |
| 534 |
nothing calls this directly
no test coverage detected