summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/gprof2html.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22924: Scripts gprof2html.py and highlight.py now use html.escape()Serhiy Storchaka2014-12-011-2/+6
| | | | instead of deperecated cgi.escape(). Original patch by Raymond Hettinger.
* Issue #17801: fix shebang line of gprof2html.pyNed Deily2013-04-201-1/+1
|
* #14508: make gprof2html script runnable under python3R David Murray2012-04-111-5/+7
| | | | | | | Not that I haven't tested it to make sure it works, just that it can run against an empty source file. Initial patch by Popa.Claudiu.
* convert shebang lines: python -> python3Benjamin Peterson2010-03-111-1/+1
|
* [Patch #1005491 ] use __name__ == '__main__' in scriptsAndrew M. Kuchling2004-08-091-1/+2
|
* A tool to transform gprof(1) output into HTML, so you can click on aGuido van Rossum2002-08-091-0/+78
function name and go to the corresponding entry.