rich_rust 0.2.1

A Rust port of Python's Rich library for beautiful terminal output
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""Deterministic exception fixture for Rich traceback conformance.

This file is kept as a simple, stable traceback generator for manual reference.
The fixture generator currently constructs `Traceback` instances from explicit
frames and does not execute this module.
"""


def level3() -> None:
    1 / 0  # noqa: B018


def level2() -> None:
    level3()


def level1() -> None:
    level2()