1
1
2
2
Traceback (most recent call last):
3
- File "tests/exceptions/source/others/nested_with_reraise.py", line 21 , in bar
3
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 20 , in bar
4
4
f = foo(x, y)
5
- File "tests/exceptions/source/others/nested_with_reraise.py", line 15 , in foo
5
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 14 , in foo
6
6
a / b
7
7
ZeroDivisionError: division by zero
8
8
9
9
Traceback (most recent call last):
10
10
11
- File "tests/exceptions/source/others/nested_with_reraise.py", line 21 , in bar
11
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 20 , in bar
12
12
f = foo(x, y)
13
13
│ │ └ 0
14
14
│ └ 1
15
15
└ <function foo at 0xDEADBEEF>
16
16
17
- File "tests/exceptions/source/others/nested_with_reraise.py", line 15 , in foo
17
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 14 , in foo
18
18
a / b
19
19
│ └ 0
20
20
└ 1
21
21
22
22
ZeroDivisionError: division by zero
23
23
24
24
Traceback (most recent call last):
25
- File "tests/exceptions/source/others/nested_with_reraise.py", line 31 , in <module>
25
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 30 , in <module>
26
26
baz()
27
- File "tests/exceptions/source/others/nested_with_reraise.py", line 27 , in baz
27
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 26 , in baz
28
28
bar(1, 0)
29
- > File "tests/exceptions/source/others/nested_with_reraise.py", line 21 , in bar
29
+ > File "tests/exceptions/source/others/nested_with_reraise.py", line 20 , in bar
30
30
f = foo(x, y)
31
- File "tests/exceptions/source/others/nested_with_reraise.py", line 15 , in foo
31
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 14 , in foo
32
32
a / b
33
33
ZeroDivisionError: division by zero
34
34
35
35
Traceback (most recent call last):
36
36
37
- File "tests/exceptions/source/others/nested_with_reraise.py", line 31 , in <module>
37
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 30 , in <module>
38
38
baz()
39
39
└ <function baz at 0xDEADBEEF>
40
40
41
- File "tests/exceptions/source/others/nested_with_reraise.py", line 27 , in baz
41
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 26 , in baz
42
42
bar(1, 0)
43
43
└ <function bar at 0xDEADBEEF>
44
44
45
- > File "tests/exceptions/source/others/nested_with_reraise.py", line 21 , in bar
45
+ > File "tests/exceptions/source/others/nested_with_reraise.py", line 20 , in bar
46
46
f = foo(x, y)
47
47
│ │ └ 0
48
48
│ └ 1
49
49
└ <function foo at 0xDEADBEEF>
50
50
51
- File "tests/exceptions/source/others/nested_with_reraise.py", line 15 , in foo
51
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 14 , in foo
52
52
a / b
53
53
│ └ 0
54
54
└ 1
55
55
56
56
ZeroDivisionError: division by zero
57
57
58
58
Traceback (most recent call last):
59
- File "tests/exceptions/source/others/nested_with_reraise.py", line 21 , in bar
59
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 20 , in bar
60
60
f = foo(x, y)
61
- File "tests/exceptions/source/others/nested_with_reraise.py", line 15 , in foo
61
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 14 , in foo
62
62
a / b
63
63
ZeroDivisionError: division by zero
64
64
65
65
The above exception was the direct cause of the following exception:
66
66
67
67
Traceback (most recent call last):
68
- File "tests/exceptions/source/others/nested_with_reraise.py", line 27 , in baz
68
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 26 , in baz
69
69
bar(1, 0)
70
- File "tests/exceptions/source/others/nested_with_reraise.py", line 23 , in bar
70
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 22 , in bar
71
71
raise ValueError from e
72
72
ValueError
73
73
74
74
Traceback (most recent call last):
75
75
76
- File "tests/exceptions/source/others/nested_with_reraise.py", line 21 , in bar
76
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 20 , in bar
77
77
f = foo(x, y)
78
78
│ │ └ 0
79
79
│ └ 1
80
80
└ <function foo at 0xDEADBEEF>
81
81
82
- File "tests/exceptions/source/others/nested_with_reraise.py", line 15 , in foo
82
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 14 , in foo
83
83
a / b
84
84
│ └ 0
85
85
└ 1
@@ -92,42 +92,42 @@ The above exception was the direct cause of the following exception:
92
92
93
93
Traceback (most recent call last):
94
94
95
- File "tests/exceptions/source/others/nested_with_reraise.py", line 27 , in baz
95
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 26 , in baz
96
96
bar(1, 0)
97
97
└ <function bar at 0xDEADBEEF>
98
98
99
- File "tests/exceptions/source/others/nested_with_reraise.py", line 23 , in bar
99
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 22 , in bar
100
100
raise ValueError from e
101
101
102
102
ValueError
103
103
104
104
Traceback (most recent call last):
105
- File "tests/exceptions/source/others/nested_with_reraise.py", line 21 , in bar
105
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 20 , in bar
106
106
f = foo(x, y)
107
- File "tests/exceptions/source/others/nested_with_reraise.py", line 15 , in foo
107
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 14 , in foo
108
108
a / b
109
109
ZeroDivisionError: division by zero
110
110
111
111
The above exception was the direct cause of the following exception:
112
112
113
113
Traceback (most recent call last):
114
- File "tests/exceptions/source/others/nested_with_reraise.py", line 31 , in <module>
114
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 30 , in <module>
115
115
baz()
116
- > File "tests/exceptions/source/others/nested_with_reraise.py", line 27 , in baz
116
+ > File "tests/exceptions/source/others/nested_with_reraise.py", line 26 , in baz
117
117
bar(1, 0)
118
- File "tests/exceptions/source/others/nested_with_reraise.py", line 23 , in bar
118
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 22 , in bar
119
119
raise ValueError from e
120
120
ValueError
121
121
122
122
Traceback (most recent call last):
123
123
124
- File "tests/exceptions/source/others/nested_with_reraise.py", line 21 , in bar
124
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 20 , in bar
125
125
f = foo(x, y)
126
126
│ │ └ 0
127
127
│ └ 1
128
128
└ <function foo at 0xDEADBEEF>
129
129
130
- File "tests/exceptions/source/others/nested_with_reraise.py", line 15 , in foo
130
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 14 , in foo
131
131
a / b
132
132
│ └ 0
133
133
└ 1
@@ -140,15 +140,15 @@ The above exception was the direct cause of the following exception:
140
140
141
141
Traceback (most recent call last):
142
142
143
- File "tests/exceptions/source/others/nested_with_reraise.py", line 31 , in <module>
143
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 30 , in <module>
144
144
baz()
145
145
└ <function baz at 0xDEADBEEF>
146
146
147
- > File "tests/exceptions/source/others/nested_with_reraise.py", line 27 , in baz
147
+ > File "tests/exceptions/source/others/nested_with_reraise.py", line 26 , in baz
148
148
bar(1, 0)
149
149
└ <function bar at 0xDEADBEEF>
150
150
151
- File "tests/exceptions/source/others/nested_with_reraise.py", line 23 , in bar
151
+ File "tests/exceptions/source/others/nested_with_reraise.py", line 22 , in bar
152
152
raise ValueError from e
153
153
154
154
ValueError
0 commit comments