(self, other: object)
| 427 | return _bool_to_int(self).__mul__(_coerce_arith_any(other)) |
| 428 | |
| 429 | def __rmul__(self, other: object) -> ArithRef: |
| 430 | return _coerce_arith_any(other).__mul__(_bool_to_int(self)) |
| 431 | |
| 432 | |
| 433 | class ArithRef(ExprRef): |
nothing calls this directly
no test coverage detected