1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
.gitignore
LICENSE.txt
MANIFEST.in
README.md
make_release.sh
pyproject.toml
setup.cfg
setup.py
tox.ini
.github/workflows/pytest.yml
stack_data/__init__.py
stack_data/core.py
stack_data/formatting.py
stack_data/py.typed
stack_data/serializing.py
stack_data/utils.py
stack_data/version.py
stack_data.egg-info/PKG-INFO
stack_data.egg-info/SOURCES.txt
stack_data.egg-info/dependency_links.txt
stack_data.egg-info/requires.txt
stack_data.egg-info/top_level.txt
tests/__init__.py
tests/test_core.py
tests/test_formatter.py
tests/test_serializer.py
tests/test_utils.py
tests/utils.py
tests/golden_files/blank_invisible_no_linenos.txt
tests/golden_files/blank_single.txt
tests/golden_files/blank_visible.txt
tests/golden_files/blank_visible_no_linenos.txt
tests/golden_files/blank_visible_with_linenos_no_current_line_indicator.txt
tests/golden_files/block_left_new.txt
tests/golden_files/block_left_old.txt
tests/golden_files/block_right_new.txt
tests/golden_files/block_right_old.txt
tests/golden_files/cython_example.txt
tests/golden_files/f_string_3.8.txt
tests/golden_files/f_string_new.txt
tests/golden_files/f_string_old.txt
tests/golden_files/format_frame.txt
tests/golden_files/format_stack.txt
tests/golden_files/linenos_no_current_line_indicator.txt
tests/golden_files/plain.txt
tests/golden_files/print_stack.txt
tests/golden_files/pygmented.txt
tests/golden_files/pygmented_error.txt
tests/golden_files/serialize.json
tests/golden_files/single_option_linenos_no_current_line_indicator.txt
tests/golden_files/variables.txt
tests/samples/__init__.py
tests/samples/cython_example.pyx
tests/samples/example.py
tests/samples/formatter_example.py
tests/samples/not_code.txt
tests/samples/pieces.py
tests/samples/pygments_example.py
tests/samples/to_exec.py
|