File: nested.txt

package info (click to toggle)
loguru 0.7.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,556 kB
  • sloc: python: 13,164; javascript: 49; makefile: 14
file content (27 lines) | stat: -rw-r--r-- 963 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

Traceback (most recent call last):
  File "tests/exceptions/source/backtrace/nested.py", line 17, in <module>
    a(0)
> File "tests/exceptions/source/backtrace/nested.py", line 14, in a
    nested(x)
  File "tests/exceptions/source/backtrace/nested.py", line 12, in nested
    1 / i
ZeroDivisionError: division by zero

Traceback (most recent call last):
  File "tests/exceptions/source/backtrace/nested.py", line 28, in <module>
    b(0)
> File "tests/exceptions/source/backtrace/nested.py", line 25, in b
    nested(x)
  File "tests/exceptions/source/backtrace/nested.py", line 22, in nested
    1 / i
ZeroDivisionError: division by zero

Traceback (most recent call last):
  File "tests/exceptions/source/backtrace/nested.py", line 41, in <module>
    c(0)
> File "tests/exceptions/source/backtrace/nested.py", line 36, in c
    nested(x)
  File "tests/exceptions/source/backtrace/nested.py", line 33, in nested
    1 / i
ZeroDivisionError: division by zero