mirror of https://github.com/Delgan/loguru.git
49 lines
1.9 KiB
Plaintext
49 lines
1.9 KiB
Plaintext
|
|
Traceback (most recent call last):
|
|
File "tests/exceptions/source/backtrace/chained_expression_direct.py", line 12, in a_decorated
|
|
1 / 0
|
|
ZeroDivisionError: division by zero
|
|
|
|
During handling of the above exception, another exception occurred:
|
|
|
|
Traceback (most recent call last):
|
|
File "tests/exceptions/source/backtrace/chained_expression_direct.py", line 40, in <module>
|
|
b_decorator()
|
|
> File "tests/exceptions/source/backtrace/chained_expression_direct.py", line 25, in b_decorator
|
|
a_decorated()
|
|
File "tests/exceptions/source/backtrace/chained_expression_direct.py", line 14, in a_decorated
|
|
raise ValueError("NOK")
|
|
ValueError: NOK
|
|
|
|
Traceback (most recent call last):
|
|
File "tests/exceptions/source/backtrace/chained_expression_direct.py", line 19, in a_not_decorated
|
|
1 / 0
|
|
ZeroDivisionError: division by zero
|
|
|
|
During handling of the above exception, another exception occurred:
|
|
|
|
Traceback (most recent call last):
|
|
File "tests/exceptions/source/backtrace/chained_expression_direct.py", line 41, in <module>
|
|
b_context_manager()
|
|
> File "tests/exceptions/source/backtrace/chained_expression_direct.py", line 30, in b_context_manager
|
|
a_not_decorated()
|
|
File "tests/exceptions/source/backtrace/chained_expression_direct.py", line 21, in a_not_decorated
|
|
raise ValueError("NOK")
|
|
ValueError: NOK
|
|
|
|
Traceback (most recent call last):
|
|
File "tests/exceptions/source/backtrace/chained_expression_direct.py", line 19, in a_not_decorated
|
|
1 / 0
|
|
ZeroDivisionError: division by zero
|
|
|
|
During handling of the above exception, another exception occurred:
|
|
|
|
Traceback (most recent call last):
|
|
File "tests/exceptions/source/backtrace/chained_expression_direct.py", line 42, in <module>
|
|
b_explicit()
|
|
> File "tests/exceptions/source/backtrace/chained_expression_direct.py", line 35, in b_explicit
|
|
a_not_decorated()
|
|
File "tests/exceptions/source/backtrace/chained_expression_direct.py", line 21, in a_not_decorated
|
|
raise ValueError("NOK")
|
|
ValueError: NOK
|