Getting Deep and Dirty with Python

From PeformIQ Upgrade
Revision as of 10:40, 25 January 2008 by PeterHarding (talk | contribs) (New page: Back to Python = Some Tools = Here are a few tools to assist with probing the internals of your Python scripts when tacking those tricky problems that seem to defy understanding. ==...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Back to Python

Some Tools

Here are a few tools to assist with probing the internals of your Python scripts when tacking those tricky problems that seem to defy understanding.

Modules - inspect and pprint

See Cheap debugging trick: inspect & pprint

Back to Python