(self, other)
| 564 | return self.__floordiv__(other) |
| 565 | |
| 566 | def __floordiv__(self, other): |
| 567 | res = self.__divmod__(other) |
| 568 | if res is NotImplemented: |
| 569 | return res |
| 570 | return res[0] |
| 571 | |
| 572 | def __mod__(self, other): |
| 573 | res = self.__divmod__(other) |