(self, other)
| 570 | return res[0] |
| 571 | |
| 572 | def __mod__(self, other): |
| 573 | res = self.__divmod__(other) |
| 574 | if res is NotImplemented: |
| 575 | return res |
| 576 | return res[1] |
| 577 | |
| 578 | def __divmod__(self, other): |
| 579 | othercoef = self._get_coefficients(other) |
nothing calls this directly
no test coverage detected