17 Sep
2016
17 Sep
'16
5:14 p.m.
On Sun, Sep 18, 2016 at 8:06 AM, Ethan Furman <ethan@stoneleaf.us> wrote:
Just like Python will use the defined __ne__ if it's present, or fall back to negating the result of __eq__ if __ne__ is not present, I see __divmod__ working the same way:
- is __mod__ present? use it - is __floordiv__ present? use it - otherwise, use __divmod__ and return the needed piece
I'm pretty sure __div__ should not fall back to __divmod__.
How does __mod__ fall back to __floordiv__? I'm lost. ChrisA