diff options
author | Marc-André Lemburg <mal@egenix.com> | 2006-08-29 10:34:12 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2006-08-29 10:34:12 (GMT) |
commit | f6fc4540841438757eaf6488fa3ca300f5e1361f (patch) | |
tree | cfbe325bc3d104b09028058bf70f26352d311213 /Tools/pybench | |
parent | d219e7f986a9b777c969614bf21967fd0c44df69 (diff) | |
download | cpython-f6fc4540841438757eaf6488fa3ca300f5e1361f.zip cpython-f6fc4540841438757eaf6488fa3ca300f5e1361f.tar.gz cpython-f6fc4540841438757eaf6488fa3ca300f5e1361f.tar.bz2 |
Fix a buglet in the error reporting (SF bug report #1546372).
This should probably go into Python 2.5 or 2.5.1 as well.
Diffstat (limited to 'Tools/pybench')
-rwxr-xr-x | Tools/pybench/pybench.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Tools/pybench/pybench.py b/Tools/pybench/pybench.py index 7d90ba1..242f039 100755 --- a/Tools/pybench/pybench.py +++ b/Tools/pybench/pybench.py @@ -885,7 +885,7 @@ python pybench.py -s p25.pybench -c p21.pybench else: bench.print_benchmark(hidenoise=hidenoise, limitnames=limitnames) - except IOError: + except IOError, reason: print '* Error opening/reading file %s: %s' % ( repr(show_bench), reason) @@ -931,8 +931,13 @@ python pybench.py -s p25.pybench -c p21.pybench bench.name = reportfile pickle.dump(bench,f) f.close() - except IOError: + except IOError, reason: print '* Error opening/writing reportfile' + except IOError, reason: + print '* Error opening/writing reportfile %s: %s' % ( + reportfile, + reason) + print if __name__ == '__main__': PyBenchCmdline() |