(self, other: object)
| 421 | return _bool_to_int(self).__add__(_coerce_arith_any(other)) |
| 422 | |
| 423 | def __radd__(self, other: object) -> ArithRef: |
| 424 | return _coerce_arith_any(other).__add__(_bool_to_int(self)) |
| 425 | |
| 426 | def __mul__(self, other: object) -> ArithRef: |
| 427 | return _bool_to_int(self).__mul__(_coerce_arith_any(other)) |
nothing calls this directly
no test coverage detected