cProfile for python 2.4

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • David Pratt

    #1

    cProfile for python 2.4

    I'd like to compile cProfile for python 2.4. Where can I get it to do
    this? I realize it is part of python 2.5. Many thanks.
  • ptrk

    #2
    Re: cProfile for python 2.4

    On Mar 28, 3:50 pm, David Pratt <fairwi...@east link.cawrote:
    I'd like to compile cProfile for python 2.4. Where can I get it to do
    this? I realize it is part of python 2.5. Many thanks.
    can you use cProfile's predecessor, profile?

    Source code: Lib/profile.py and Lib/pstats.py Introduction to the profilers: cProfile and profile provide deterministic profiling of Python programs. A profile is a set of statistics that describes...

    Comment

    Working...