[Python-checkins] r51647 - python/trunk/Tools/pybench/pybench.py

marc-andre.lemburg python-checkins at python.org
Tue Aug 29 12:34:13 CEST 2006


Author: marc-andre.lemburg
Date: Tue Aug 29 12:34:12 2006
New Revision: 51647

Modified:
   python/trunk/Tools/pybench/pybench.py
Log:
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.



Modified: python/trunk/Tools/pybench/pybench.py
==============================================================================
--- python/trunk/Tools/pybench/pybench.py	(original)
+++ python/trunk/Tools/pybench/pybench.py	Tue Aug 29 12:34:12 2006
@@ -885,7 +885,7 @@
                 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 @@
                 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()


More information about the Python-checkins mailing list