We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a8ab5a commit 16ac496Copy full SHA for 16ac496
1 file changed
tests/misc/recursion.py
@@ -0,0 +1,7 @@
1
+def foo():
2
+ foo()
3
+
4
+try:
5
6
+except RuntimeError:
7
+ print("RuntimeError")
0 commit comments