We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 972afc1 commit 57a27e5Copy full SHA for 57a27e5
1 file changed
samples/debug/err.py
@@ -0,0 +1,12 @@
1
+# err.py
2
+def foo(s):
3
+ return 10 / int(s)
4
+
5
+def bar(s):
6
+ return foo(s) * 2
7
8
+def main():
9
+ bar('0')
10
11
+main()
12
0 commit comments