Swaps self/other and returns __mod__.
(self, other, context=None)
| 1445 | return remainder |
| 1446 | |
| 1447 | def __rmod__(self, other, context=None): |
| 1448 | """Swaps self/other and returns __mod__.""" |
| 1449 | other = _convert_other(other) |
| 1450 | if other is NotImplemented: |
| 1451 | return other |
| 1452 | return other.__mod__(self, context=context) |
| 1453 | |
| 1454 | def remainder_near(self, other, context=None): |
| 1455 | """ |
nothing calls this directly
no test coverage detected