[pypy-svn] rev 1066 - pypy/trunk/src/pypy/interpreter

mwh at codespeak.net mwh at codespeak.net
Mon Jun 30 11:44:12 CEST 2003


Author: mwh
Date: Mon Jun 30 11:44:11 2003
New Revision: 1066

Modified:
   pypy/trunk/src/pypy/interpreter/executioncontext.py
Log:
revert hpk's slightly inappropriate fix.


Modified: pypy/trunk/src/pypy/interpreter/executioncontext.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/executioncontext.py	(original)
+++ pypy/trunk/src/pypy/interpreter/executioncontext.py	Mon Jun 30 11:44:11 2003
@@ -152,7 +152,7 @@
         if exc_value is None:
             print >> file, exc_typename
         else:
-            print >> file, exc_typename, exc_value
+            print >> file, exc_typename+':', exc_value
 
 
 class NoValue(Exception):


More information about the Pypy-commit mailing list