how can i profile every line of code

Tim Lesher tlesher at gmail.com
Thu Feb 21 15:27:09 EST 2008


On Feb 21, 10:06 am, scsoce <scs... at gmail.com> wrote:
> I want to profile a function which has some lines of statement. It seem
> that profile module only report function's stats instead of every  line
> of code, how can i profile every line of code?
> thanks.

Use the hotshot profiler, and when creating the profiler instance,
specify linetimings=True:

http://docs.python.org/lib/module-hotshot.html





More information about the Python-list mailing list