Back to snippets
tracerite_context_manager_for_beautified_exception_traceback.py
pythonWraps a block of code with a context manager to catch exceptions and display a
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()