1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Source: pythontracer
Section: python
Priority: extra
Maintainer: TANIGUCHI Takaki <takaki@debian.org>
Build-Depends: debhelper (>= 7.0.50~),
python-all-dev, python-setuptools, dh-python
Standards-Version: 3.9.1
Homepage: http://code.google.com/p/pythontracer/
#Vcs-Git: git://git.debian.org/collab-maint/pythontracer.git
#Vcs-Browser: http://git.debian.org/?p=collab-maint/pythontracer.git;a=summary
Package: pythontracer
Architecture: any
Depends: ${python:Depends},${shlibs:Depends}, ${misc:Depends}, python-gtk2
Description: Python programs' execution tracer and profiler
Lets you see your Python program's execution as a tree of function
invocations, each tree node exposing the real time, and CPU time (user/sys)
of that call.
.
This project consists of two main components: A Python tracer that can run
your Python programs (much like "cProfile" and friends). A Gtk+ based GUI
that can show the trace results.
.
It uses a tiny auxiliary library written for it "graphfile" to allow
append-only writing and reading static DAG's directly from file without
reading it whole into memory at any stage.
|