Swaps self/other and returns __truediv__.
(self, other, context=None)
| 1424 | return ans, ans |
| 1425 | |
| 1426 | def __rtruediv__(self, other, context=None): |
| 1427 | """Swaps self/other and returns __truediv__.""" |
| 1428 | other = _convert_other(other) |
| 1429 | if other is NotImplemented: |
| 1430 | return other |
| 1431 | return other.__truediv__(self, context=context) |
| 1432 | |
| 1433 | def __divmod__(self, other, context=None): |
| 1434 | """ |
nothing calls this directly
no test coverage detected