A Python package for high-fidelity serialization and deserialization of exceptions and their complete tracebacks. Unlike other
solutions, offline-debug reconstructs actual types.FrameType objects using the Python C API, ensuring that re-raised
exceptions look and feel genuine to debuggers and introspection tools.
save_traceback(exc: BaseException, file: Path | BytesIO, proxy_types=DEFAULT_PROXY_TYPES): Serializes an exception, its traceback, and all picklable local/global variables to a binary file or buffer.proxy_typesnames classes whose instances must never be touched (see Object proxies).load_traceback(file: Path | BytesIO) -> Never: Loads the serialized state, reconstructs the exception and its full traceback chain (including__cause__and__context__), and raises it.parse_traceback(file: Path | BytesIO) -> ExceptionData: Loads the serialized data and returns anExceptionDataobject. This allows for inspecting the exception, stack frames, and variables without reconstructing the full traceback or raising the exception.
To get started, install with:
pip install offline-debug or uv add offline-debug
from pathlib import Path
from offline_debug import save_traceback, load_traceback, parse_traceback
# --- Saving an exception ---
try:
some_complex_operation()
except Exception as e:
save_traceback(e, Path("crash_report.dump"))
# --- Option 1: Re-raise the exception for debugging ---
# This will look like the original crash in your debugger
load_traceback(Path("crash_report.dump"))
# --- Option 2: Inspect data without raising ---
data = parse_traceback(Path("crash_report.dump"))
print(f"Number of frames: {len(data.tb_frames)}")
for frame in data.tb_frames:
print(f"File: {frame.code.co_filename}, Line: {frame.lineno}")offline-debug has full support for ExceptionGroup (Python 3.11+). When you parse a saved ExceptionGroup, you can access its nested exceptions:
from offline_debug import parse_traceback, ExceptionGroupData
data = parse_traceback(Path("exception_group.dump"))
if isinstance(data, ExceptionGroupData):
print(f"Group contains {len(data.exceptions)} sub-exceptions")
for sub_exc_data in data.exceptions:
# Each sub_exc_data is itself an ExceptionData object
print(f"Sub-exception frames: {len(sub_exc_data.tb_frames)}")An object proxy such as an rpyc netref turns every
instance operation - attribute reads, repr, isinstance (through __class__),
pickling (through __reduce_ex__) - into a remote call that blocks for the peer's
full timeout once the connection breaks, and a dead peer is often why the code
crashed. So save_traceback recognises proxies from their type alone and writes
a placeholder like <proxy rpyc.core.netref.SaharaClient at 0x7f...> without
touching the instance:
save_traceback(e, dump_file, proxy_types=(*DEFAULT_PROXY_TYPES, MyProxyBase))An entry is a class or a fully-qualified class name such as
"rpyc.core.netref.BaseNetref", which names a proxy family without importing its
package; both forms match subclasses, since only type(value).__mro__ is consulted.
DEFAULT_PROXY_TYPES covers rpyc netrefs out of the box. Proxies are replaced
wherever they appear: frame variables, items nested in containers, and an
exception's args or attributes.
An unregistered proxy is still slow to save, but can no longer lose the dump: a
placeholder falls back to the bare object repr when repr or str raises.
- True Frame Reconstruction: Uses
ctypesto callPyFrame_Newfrom the Python C API. This creates realframeobjects which are required for a validtypes.TracebackType. - Python 3.13 Compatibility: Leverages PEP 667 features where
f_localsis a write-through proxy, allowing for accurate local variable restoration. - Support python 3.12 as well
- Resilient Serialization:
pickleis used for exceptions and variables.marshalis used for code objects.- Non-picklable items are gracefully handled by storing their
repr.
- Package Manager:
uv - Minimum Python: 3.12
- Testing:
pytest - Commands:
- Add dependencies:
uv add <package> - Run tests:
uv run pytest
- Add dependencies: