Swaps self/other and returns __truediv__.
(self, other, context=None)
| 1368 | return ans, ans |
| 1369 | |
| 1370 | def __rtruediv__(self, other, context=None): |
| 1371 | """Swaps self/other and returns __truediv__.""" |
| 1372 | other = _convert_other(other) |
| 1373 | if other is NotImplemented: |
| 1374 | return other |
| 1375 | return other.__truediv__(self, context=context) |
| 1376 | |
| 1377 | def __divmod__(self, other, context=None): |
| 1378 | """ |
nothing calls this directly
no test coverage detected