Skip to main content

Slightly extended and sanitized Python debugger -- Debugger with Zope support

Project description

Pdb, the Python debugger, has severe limitations (apart from some bugs). This extension tries to get rid of some of them.

Things done

  • setting breakpoints

    Allow filename to specify a module as well.

    Allow setting breakpoints from outside via do_break. This is useful for debug setups.

  • exception display

    The current display of an exception is almost useless. In the Pdb code, exceptions are displayed at 4 places – and each of them uses slightly different code (whow!).

    We consolidate this into a single function _handle_exception and present the exception with traceback.format_exception_only. We also store the exception in the Pdb instance. A new command exception (abbreviated e) presents this stored exception value in a way similar to the where command.

  • where command improvements

    • each frame identifies its level (the top frame is at level 0, the one below it at level 1, etc…)

    • the current frame is marked as such

    • where gets optional arguments number and end

      number controls how many frames are displayed (default: maxint), end at what level the display ends, negative numbers count from the bottom (default: -1, i.e. the bottom frame).

  • new command frame level (abbr: f)

    switch to call frame at level

    without argument, provide info about current frame

  • allow to customize the display of the where command and of tracebacks e.g. to display additional debugging information as provided by Zope (for example).

    This can be done by customizing getAdditionalFrameInfo.

Things not yet done

  • Returning from debug occasionally returns to stop rather than where we entered the recursive debugger. This is often nasty (and should be fixed)

Version history

1.0.3

  • fix the debug to use the current Pdb class, not Python’s.

1.0.2

  • let external calls to do_break work even after the first run.

Project details


Download files

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

Source Distribution

dm.pdb-1.0.3.tar.gz (6.4 kB view details)

Uploaded Source

File details

Details for the file dm.pdb-1.0.3.tar.gz.

File metadata

  • Download URL: dm.pdb-1.0.3.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for dm.pdb-1.0.3.tar.gz
Algorithm Hash digest
SHA256 00fa31657115df8d14e904830e0f52bbaa5250d17b1eed9e3cdf275aad97bf63
MD5 b46e53edfa2404d9c5ae0ada75f46f74
BLAKE2b-256 381ad0513e42e20cfb13614901116da1f86844695096634af34f9fba98a4bc26

See more details on using hashes here.

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