tracebackturbo3
Patched version of traceback, also dumps local and global scope vars.
What it is and what it does
tracebackturbo3 patches Python's standard traceback module to display the local and global variable scope at each frame in a stack trace. When an exception occurs, instead of showing only the file, line number, and code that raised the error, it also prints the values of all variables visible at that point in execution. This can significantly speed up debugging by eliminating the need to manually inspect variables or re-run code with print statements.
The package is a straightforward import-and-use tool: you import it as traceback and call its standard methods like format_exc(). It has no external dependencies and installs as a pure Python wheel. However, it has been unmaintained since 2018-12-18, so it may not work reliably with Python versions or standard library changes that have occurred since then.
Use it for:
- Debugging production errors where you need to see variable state at the point of failure without adding logging.
- Local development when an exception occurs and you want immediate visibility into the scope without re-running the code.
- Investigating complex multi-frame stack traces where variable values at intermediate frames are critical to understanding the failure.
- Educational or exploratory work where understanding variable flow through nested function calls is the primary goal.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
A drop-in replacement for Python's traceback module that includes local and global variable values in exception stack traces.
No. While the package itself is harmless and has no known vulnerabilities, it is abandoned and has not been updated since 2018-12-18. Modern Python versions, exception handling patterns, and debugging tools have evolved significantly. A developer needing enhanced traceback output should consider modern alternatives or use built-in debugging tools.
Install
tracebackturbo3 on PyPI
pip
pip install tracebackturbo3uv
uv add tracebackturbo3poetry
poetry add tracebackturbo3Installing tracebackturbo3
Before you install
Low install friction with no runtime dependencies. However, the package is abandoned—last release was 2018-12-18 with no activity since then.
License in practice
Licensed under the Python Software Foundation License (permissive), which allows use, modification, and distribution with minimal restrictions.
Quickstart
pip install tracebackturbo3
import tracebackturbo3 as traceback
try:
erroneous_function()
except:
print(traceback.format_exc())
Verify before relying
- Compatibility with Python versions released after 2018 is unknown and untested.
- Whether the package works correctly with modern exception handling or async code is not documented.
- Active maintenance or community support status beyond the archived repository is unclear.
Package facts
| License | PSF (permissive) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | abandoned — 2,796 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 92,359/month — #13,458 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: tracebackturbo3-0.3-py3-none-any.whl
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
traceback-with-variablesAutomatically captures and displays local…
permissive · top 15,000 on PyPI
stackprinterReplaces Python's default exception traceback…
permissive · top 15,000 on PyPI
robotframework-stacktraceA Robot Framework listener that prints stack…
permissive · top 15,000 on PyPI
pystackPyStack inspects the stack frames of a running…
permissive · top 15,000 on PyPI
devtoolsProvides a `debug()` function that prints…
permissive · top 5,000 on PyPI
traceback2Provides a backport of Python's traceback…
permissive · top 5,000 on PyPI
tblibSerializes exceptions and tracebacks to pickle…
permissive · top 1,000 on PyPI
flake8-loggingA Flake8 plugin that detects and flags common…
permissive · top 15,000 on PyPI
trampolineEnables recursive functions to bypass Python's…
permissive · top 5,000 on PyPI
pyinvokeInvokes Python functions by full module path…
permissive · top 15,000 on PyPI