Indented function trace in Xdebug format
Project description
This module prints function trace to stdout from the moment it is called:
import xtrace xtrace.start() ... xtrace.stop()
It is also possible to call xtrace as module from the command line:
python -m xtrace <script.py> [param] ...
or use as a standalone script:
python xtrace.py <script.py> [param] ...
The output format is inspired by Xdebug function traces and will likely to merge with it http://xdebug.org/docs/execution_trace to be compatible with PHP inspection tools. But I didn’t have enough time to polish it, so feel free to send a patch if you know how to bring them closer.
This code is released into public domain. Enjoy!
History
0.5 - fix major crash when function in executed script tried to read variables in its global scope
0.4 - added beep function which beeps in DEBUG mode when excited
0.3 - fix AttributeError when running from console (issue #2)
0.2 - added version info, support running from command line, moved main functions into a class to isolate used variables in local namespace
0.1 - initial release
Credits
Amaury Forgeot d’Arc, for valuable insight into Python internals
Debugging
To see various internal events that xtrace produces on top of standard data provided by Python, enable DEBUG option:
import xtrace xtrace.DEBUG = True
This will call beep functiton for every interesting event. Feel free to override it (monkeypatch) with your own to filter messages, forward, etc.
Known Python Bugs
Python bugs affecting trace output in unexpected way:
- http://bugs.python.org/issue15005 (Python 2, Linux only)
captured stdout from subprocess call becomes corrupted under a trace function that prints to the screen
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
File details
Details for the file xtrace-0.5.zip
.
File metadata
- Download URL: xtrace-0.5.zip
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 440fef119898d13f2332931e4781a52b749506b9d5dcc97a9d3222d8c4caceb9 |
|
MD5 | 2de4f0a53e2321a45e0039e55ccf09d8 |
|
BLAKE2b-256 | 91549c3f6e95cc7337594ec0c37030b3742c70908ef0e5a7c7f6381637eee1d7 |