(self, other)
| 629 | return res[0] |
| 630 | |
| 631 | def __rmod__(self, other): |
| 632 | res = self.__rdivmod__(other) |
| 633 | if res is NotImplemented: |
| 634 | return res |
| 635 | return res[1] |
| 636 | |
| 637 | def __rdivmod__(self, other): |
| 638 | try: |
nothing calls this directly
no test coverage detected