Skip to main content

Post-mortem PDB handler

Project description

WTF is a Python post-mortem debug handler.

After an exception, a Pdb debugger will be started in the frame and line where the exception was raised. The IPython debugger will be used by default if available, Otherwise Python’s own pdb.Pdb.

See the accompanying LICENSE file for the licensing terms.

Usage

If with statement block support is available (default since 2.6), then WTF can be used as:

from wtf import WTF

with WTF:
    ... do something ...

If an exception is raised inside the with block, then a Pdb debugger will be started on the conflicting line.

WTF can be used as a function call also, with the same results.:

from wtf import WTF

try:
    ... do something ...
except:
    WTF()

For more info, check the wtf.WTFHandler class.

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wtf-0.1.tar.gz (3.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page