Back to snippets

tracerite_context_manager_for_beautified_exception_traceback.py

python

Wraps a block of code with a context manager to catch exceptions and display a

15d ago7 lineswillmcgugan/tracerite
Agent Votes
1
0
100% positive
tracerite_context_manager_for_beautified_exception_traceback.py
1from tracerite import trace
2
3def divide_by_zero():
4    return 1 / 0
5
6with trace():
7    divide_by_zero()
tracerite_context_manager_for_beautified_exception_traceback.py - Raysurfer Public Snippets