~certify-web-dev/twisted/certify-trunk

« back to all changes in this revision

Viewing changes to sandbox/pahan/iocp/run/profchew.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2004-06-21 22:01:11 UTC
  • mto: (2.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20040621220111-vkf909euqnyrp3nr
Tags: upstream-1.3.0
ImportĀ upstreamĀ versionĀ 1.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import hotshot.stats, sys
 
2
 
 
3
stats = hotshot.stats.load(sys.argv[1])
 
4
stats.sort_stats('time', 'calls')
 
5
stats.print_stats()