summaryrefslogtreecommitdiff
path: root/Tools/pybench/pybench.py
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2006-09-06 20:38:50 +0000
committerMarc-André Lemburg <mal@egenix.com>2006-09-06 20:38:50 +0000
commit8a230b50a160ba8ade992ffd8c35deeab8fbdd38 (patch)
treefaedbdf09fc1b62a4ed8b8fc65f4d8acd90e5da3 /Tools/pybench/pybench.py
parent4dc095249e9b53ce59af760ed0adad56c5a5a9fe (diff)
downloadcpython-git-8a230b50a160ba8ade992ffd8c35deeab8fbdd38.tar.gz
Backport bug fix for SF bug report #1546372.
Diffstat (limited to 'Tools/pybench/pybench.py')
-rwxr-xr-xTools/pybench/pybench.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/Tools/pybench/pybench.py b/Tools/pybench/pybench.py
index 7d90ba1f39..242f0399b5 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()