DEBSOURCES
Skip Quicknav
sources / micropython / 1.26.1%2Bds-1 / tests / stress / recursion.py
12345678
def foo(): foo() try: foo() except RuntimeError: print("RuntimeError")