(self, other)
| 543 | return NotImplemented |
| 544 | |
| 545 | def __rtruediv__(self, other): |
| 546 | other = as_expr(other) |
| 547 | if isinstance(other, Expr): |
| 548 | return other / self |
| 549 | return NotImplemented |
| 550 | |
| 551 | def __floordiv__(self, other): |
| 552 | other = as_expr(other) |