Swaps self/other and returns __divmod__.
(self, other, context=None)
| 1411 | return quotient, remainder |
| 1412 | |
| 1413 | def __rdivmod__(self, other, context=None): |
| 1414 | """Swaps self/other and returns __divmod__.""" |
| 1415 | other = _convert_other(other) |
| 1416 | if other is NotImplemented: |
| 1417 | return other |
| 1418 | return other.__divmod__(self, context=context) |
| 1419 | |
| 1420 | def __mod__(self, other, context=None): |
| 1421 | """ |
nothing calls this directly
no test coverage detected