Commit c29d2972 authored by Marc-André Lemburg's avatar Marc-André Lemburg

Backport bug fix for SF bug report #1546372.

parent 1625753e
...@@ -83,6 +83,13 @@ Documentation ...@@ -83,6 +83,13 @@ Documentation
to a newly created list object and add notes that this isn't a good idea. to a newly created list object and add notes that this isn't a good idea.
Tools
-----
- Bug #1546372: Fixed small bugglet in pybench that caused a missing
file not to get reported properly.
Build Build
----- -----
......
...@@ -885,7 +885,7 @@ python pybench.py -s p25.pybench -c p21.pybench ...@@ -885,7 +885,7 @@ python pybench.py -s p25.pybench -c p21.pybench
else: else:
bench.print_benchmark(hidenoise=hidenoise, bench.print_benchmark(hidenoise=hidenoise,
limitnames=limitnames) limitnames=limitnames)
except IOError: except IOError, reason:
print '* Error opening/reading file %s: %s' % ( print '* Error opening/reading file %s: %s' % (
repr(show_bench), repr(show_bench),
reason) reason)
...@@ -931,8 +931,13 @@ python pybench.py -s p25.pybench -c p21.pybench ...@@ -931,8 +931,13 @@ python pybench.py -s p25.pybench -c p21.pybench
bench.name = reportfile bench.name = reportfile
pickle.dump(bench,f) pickle.dump(bench,f)
f.close() f.close()
except IOError: except IOError, reason:
print '* Error opening/writing reportfile' print '* Error opening/writing reportfile'
except IOError, reason:
print '* Error opening/writing reportfile %s: %s' % (
reportfile,
reason)
print
if __name__ == '__main__': if __name__ == '__main__':
PyBenchCmdline() PyBenchCmdline()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment