source:
pyrunner/src/test/resources/throw.py@
570
Last change on this file since 570 was 350, checked in by , 2 years ago | |
---|---|
File size: 107 bytes |
Rev | Line | |
---|---|---|
[350] | 1 | |
2 | def deeperror(n): | |
3 | if n>0: | |
4 | deeperror(n-1) | |
5 | raise ValueError("yes this is bad") | |
6 | ||
7 | deeperror(4) |
Note:
See TracBrowser
for help on using the repository browser.