loguru/tests/exceptions/output/modern/grouped_simple.txt

101 lines
5.0 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

+ Exception Group Traceback (most recent call last):
| File "tests/exceptions/source/modern/grouped_simple.py", line 41, in <module>
| main()
| File "tests/exceptions/source/modern/grouped_simple.py", line 34, in main
| raise ExceptionGroup("group", [error_1, error_2, error_3]) from None
| ExceptionGroup: group (3 sub-exceptions)
+-+---------------- 1 ----------------
| Traceback (most recent call last):
| File "tests/exceptions/source/modern/grouped_simple.py", line 26, in main
| c(b)
| File "tests/exceptions/source/modern/grouped_simple.py", line 20, in c
| f()
| File "tests/exceptions/source/modern/grouped_simple.py", line 16, in b
| a()
| File "tests/exceptions/source/modern/grouped_simple.py", line 12, in a
| x / y
| ZeroDivisionError: division by zero
+---------------- 2 ----------------
| Traceback (most recent call last):
| File "tests/exceptions/source/modern/grouped_simple.py", line 29, in main
| c(a)
| File "tests/exceptions/source/modern/grouped_simple.py", line 20, in c
| f()
| File "tests/exceptions/source/modern/grouped_simple.py", line 12, in a
| x / y
| ZeroDivisionError: division by zero
+---------------- 3 ----------------
| Traceback (most recent call last):
| File "tests/exceptions/source/modern/grouped_simple.py", line 32, in main
| a()
| File "tests/exceptions/source/modern/grouped_simple.py", line 12, in a
| x / y
| ZeroDivisionError: division by zero
+------------------------------------
+ Exception Group Traceback (most recent call last):
|
| > File "tests/exceptions/source/modern/grouped_simple.py", line 41, in <module>
| main()
| └ <function main at 0xDEADBEEF>
|
| File "tests/exceptions/source/modern/grouped_simple.py", line 34, in main
| raise ExceptionGroup("group", [error_1, error_2, error_3]) from None
|
| ExceptionGroup: group (3 sub-exceptions)
+-+---------------- 1 ----------------
| Traceback (most recent call last):
|
| File "tests/exceptions/source/modern/grouped_simple.py", line 26, in main
| c(b)
| │ └ <function b at 0xDEADBEEF>
| └ <function c at 0xDEADBEEF>
|
| File "tests/exceptions/source/modern/grouped_simple.py", line 20, in c
| f()
| └ <function b at 0xDEADBEEF>
|
| File "tests/exceptions/source/modern/grouped_simple.py", line 16, in b
| a()
| └ <function a at 0xDEADBEEF>
|
| File "tests/exceptions/source/modern/grouped_simple.py", line 12, in a
| x / y
| │ └ 0
| └ 1
|
| ZeroDivisionError: division by zero
+---------------- 2 ----------------
| Traceback (most recent call last):
|
| File "tests/exceptions/source/modern/grouped_simple.py", line 29, in main
| c(a)
| │ └ <function a at 0xDEADBEEF>
| └ <function c at 0xDEADBEEF>
|
| File "tests/exceptions/source/modern/grouped_simple.py", line 20, in c
| f()
| └ <function a at 0xDEADBEEF>
|
| File "tests/exceptions/source/modern/grouped_simple.py", line 12, in a
| x / y
| │ └ 0
| └ 1
|
| ZeroDivisionError: division by zero
+---------------- 3 ----------------
| Traceback (most recent call last):
|
| File "tests/exceptions/source/modern/grouped_simple.py", line 32, in main
| a()
| └ <function a at 0xDEADBEEF>
|
| File "tests/exceptions/source/modern/grouped_simple.py", line 12, in a
| x / y
| │ └ 0
| └ 1
|
| ZeroDivisionError: division by zero
+------------------------------------