[pypy-svn] r33183 - pypy/dist/pypy/jit/timeshifter

pedronis at codespeak.net pedronis at codespeak.net
Wed Oct 11 19:28:20 CEST 2006


Author: pedronis
Date: Wed Oct 11 19:28:19 2006
New Revision: 33183

Modified:
   pypy/dist/pypy/jit/timeshifter/rtimeshift.py
Log:
(arre, pedronis)

report the exception type too



Modified: pypy/dist/pypy/jit/timeshifter/rtimeshift.py
==============================================================================
--- pypy/dist/pypy/jit/timeshifter/rtimeshift.py	(original)
+++ pypy/dist/pypy/jit/timeshifter/rtimeshift.py	Wed Oct 11 19:28:19 2006
@@ -507,7 +507,7 @@
         root.continue_compilation(resuminginfo)
     except Exception, e:
         lloperation.llop.debug_fatalerror(lltype.Void,
-                                          "compilation-time error", e)
+                                          "compilation-time error %s" % e)
 
 class PromotionDesc:
     __metatype__ = cachedtype



More information about the Pypy-commit mailing list