floor division isn't implemented for mpf
>>> mpf(1).__floordiv__
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'mpf' object has no attribute '__floordiv__'
divmod doesn't seem to be implemented for mpf regardless of the type combination
>>> mpf(1).__divmod__
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'mpf' object has no attribute '__divmod__'
floor division isn't implemented for
mpfdivmoddoesn't seem to be implemented formpfregardless of the type combination