Show More
@@ -2860,27 +2860,30 def dispatch(args): | |||
|
2860 | 2860 | else: |
|
2861 | 2861 | d = lambda: func(u, *args, **cmdoptions) |
|
2862 | 2862 | |
|
2863 |
|
|
|
2864 | import hotshot, hotshot.stats | |
|
2865 | prof = hotshot.Profile("hg.prof") | |
|
2866 | try: | |
|
2863 | try: | |
|
2864 | if options['profile']: | |
|
2865 | import hotshot, hotshot.stats | |
|
2866 | prof = hotshot.Profile("hg.prof") | |
|
2867 | 2867 | try: |
|
2868 | return prof.runcall(d) | |
|
2869 | except: | |
|
2870 | 2868 | try: |
|
2871 | u.warn(_('exception raised - generating profile ' | |
|
2872 | 'anyway\n')) | |
|
2869 | return prof.runcall(d) | |
|
2873 | 2870 | except: |
|
2874 |
|
|
|
2875 | raise | |
|
2876 | finally: | |
|
2877 |
|
|
|
2878 | stats = hotshot.stats.load("hg.prof") | |
|
2879 | stats.strip_dirs() | |
|
2880 | stats.sort_stats('time', 'calls') | |
|
2881 |
|
|
|
2882 | else: | |
|
2883 | return d() | |
|
2871 | try: | |
|
2872 | u.warn(_('exception raised - generating ' | |
|
2873 | 'profile anyway\n')) | |
|
2874 | except: | |
|
2875 | pass | |
|
2876 | raise | |
|
2877 | finally: | |
|
2878 | prof.close() | |
|
2879 | stats = hotshot.stats.load("hg.prof") | |
|
2880 | stats.strip_dirs() | |
|
2881 | stats.sort_stats('time', 'calls') | |
|
2882 | stats.print_stats(40) | |
|
2883 | else: | |
|
2884 | return d() | |
|
2885 | finally: | |
|
2886 | u.flush() | |
|
2884 | 2887 | except: |
|
2885 | 2888 | # enter the debugger when we hit an exception |
|
2886 | 2889 | if options['debugger']: |
@@ -132,6 +132,12 class ui(object): | |||
|
132 | 132 | for a in args: |
|
133 | 133 | sys.stderr.write(str(a)) |
|
134 | 134 | |
|
135 | def flush(self): | |
|
136 | try: | |
|
137 | sys.stdout.flush() | |
|
138 | finally: | |
|
139 | sys.stderr.flush() | |
|
140 | ||
|
135 | 141 | def readline(self): |
|
136 | 142 | return sys.stdin.readline()[:-1] |
|
137 | 143 | def prompt(self, msg, pat, default="y"): |
General Comments 0
You need to be logged in to leave comments.
Login now