Nader Emami wrote: > L.S., > > I have used the profile module to measure some thing as the next command: > > profile.run('command', 'file') > > But this make a binary file! How can I write the result of 'profile' in > a ascii file? Others how can I read (or convert) the binary file to am > ascii file?
Use an instance of pstats.Stats to interpret the results: from pstats import Stats s = Stats('file') s.print_stats() etc. http://docs.python.org/lib/profile-stats.html Kent -- http://mail.python.org/mailman/listinfo/python-list