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