1 2 3 4 5 6 7
def gen(): yield from gen() try: print(list(gen())) except RuntimeError: print("RuntimeError")