Swaps self/other and returns __floordiv__.
(self, other, context=None)
| 1552 | return self._divide(other, context)[0] |
| 1553 | |
| 1554 | def __rfloordiv__(self, other, context=None): |
| 1555 | """Swaps self/other and returns __floordiv__.""" |
| 1556 | other = _convert_other(other) |
| 1557 | if other is NotImplemented: |
| 1558 | return other |
| 1559 | return other.__floordiv__(self, context=context) |
| 1560 | |
| 1561 | def __float__(self): |
| 1562 | """Float representation.""" |
nothing calls this directly
no test coverage detected