DEBSOURCES
Skip Quicknav
sources / micropython / 1.25.0%2Bds-1 / tests / feature_check / reverse_ops.py
123456789
class Foo: def __radd__(self, other): pass try: 5 + Foo() except TypeError: print("TypeError")