(self, other)
| 500 | |
| 501 | def _make_binop(op: ast.AST): |
| 502 | def binop(self, other): |
| 503 | rhs, extra_names = self.__convert_to_ast(other) |
| 504 | return self.__make_new( |
| 505 | ast.BinOp(self.__get_ast(), op, rhs), extra_names |
| 506 | ) |
| 507 | |
| 508 | return binop |
| 509 |
nothing calls this directly
no test coverage detected