1def foo():
2    foo()
3
4
5try:
6    foo()
7except RuntimeError:
8    print("RuntimeError")
9