Home | History | Annotate | Download | only in scripts

Lines Matching refs:Profile

20 PROFILE = "hotshot.prof"
22 def run_hotshot(filename, profile, args):
23 prof = hotshot.Profile(profile)
28 stats = hotshot.stats.load(profile)
43 parser.add_option("-p", "--profile", action="store", default=PROFILE,
44 dest="profile", help='Specify profile file to use')
52 return run_hotshot(filename, options.profile, args[1:])