(self, other)
| 550 | return NotImplemented |
| 551 | |
| 552 | def __floordiv__(self, other): |
| 553 | other = as_expr(other) |
| 554 | if isinstance(other, Expr): |
| 555 | # Fortran // is different from Python //: |
| 556 | # - `//` is a concatenate operation for string operands |
| 557 | return normalize(Expr(Op.CONCAT, (self, other))) |
| 558 | return NotImplemented |
| 559 | |
| 560 | def __rfloordiv__(self, other): |
| 561 | other = as_expr(other) |