Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-30 | py/objtype: Handle NotImplemented return from binary special methods. | Paul Sokolovsky | |
NotImplemented means "try other fallbacks (like calling __rop__ instead of __op__) and if nothing works, raise TypeError". As MicroPython doesn't implement any fallbacks, signal to raise TypeError right away. |