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