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