diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-16 17:24:12 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-16 17:24:12 +0300 |
commit | f6202b38cf98f2ad0032a6efed86f4ce1ccf86a4 (patch) | |
tree | 86b4cfeefeb200e9ac8c1f24f60de089374b70dd /contrib/python/stack-data/.dist-info/METADATA | |
parent | 108a3f2a5b7ace8b0d68d936451961c889a94aa3 (diff) | |
download | ydb-f6202b38cf98f2ad0032a6efed86f4ce1ccf86a4.tar.gz |
intermediate changes
ref:e623d1e80066c7bc52d0c78d3c885faf82ccd263
Diffstat (limited to 'contrib/python/stack-data/.dist-info/METADATA')
-rw-r--r-- | contrib/python/stack-data/.dist-info/METADATA | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/contrib/python/stack-data/.dist-info/METADATA b/contrib/python/stack-data/.dist-info/METADATA index e77dd5f3c8..ec17c4a350 100644 --- a/contrib/python/stack-data/.dist-info/METADATA +++ b/contrib/python/stack-data/.dist-info/METADATA @@ -1,12 +1,11 @@ Metadata-Version: 2.1 Name: stack-data -Version: 0.2.0 +Version: 0.3.0 Summary: Extract data from python stack frames and tracebacks for informative displays Home-page: http://github.com/alexmojaki/stack_data Author: Alex Hall Author-email: alex.mojaki@gmail.com License: MIT -Platform: UNKNOWN Classifier: Intended Audience :: Developers Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 @@ -33,7 +32,9 @@ Requires-Dist: cython ; extra == 'tests' [![Tests](https://github.com/alexmojaki/stack_data/actions/workflows/pytest.yml/badge.svg)](https://github.com/alexmojaki/stack_data/actions/workflows/pytest.yml) [![Coverage Status](https://coveralls.io/repos/github/alexmojaki/stack_data/badge.svg?branch=master)](https://coveralls.io/github/alexmojaki/stack_data?branch=master) [![Supports Python versions 3.5+](https://img.shields.io/pypi/pyversions/stack_data.svg)](https://pypi.python.org/pypi/stack_data) -This is a library that extracts data from stack frames and tracebacks, particularly to display more useful tracebacks than the default. +This is a library that extracts data from stack frames and tracebacks, particularly to display more useful tracebacks than the default. It powers the tracebacks in IPython and [futurecoder](https://futurecoder.io/): + +![futurecoder example](https://futurecoder.io/static/img/features/traceback.png) You can install it from PyPI: @@ -438,5 +439,3 @@ x = -993 In addition to handling repeated frames, we've passed a traceback object to `FrameInfo.stack_data` instead of a frame. If you want, you can pass `collapse_repeated_frames=False` to `FrameInfo.stack_data` (not to `Options`) and it will just yield `FrameInfo` objects for the full stack. - - |