[pypy-svn] r12077 - pypy/dist/pypy/translator

tismer at codespeak.net tismer at codespeak.net
Sun May 8 21:02:21 CEST 2005


Author: tismer
Date: Sun May  8 21:02:21 2005
New Revision: 12077

Modified:
   pypy/dist/pypy/translator/simplify.py
Log:
tiny oops

Modified: pypy/dist/pypy/translator/simplify.py
==============================================================================
--- pypy/dist/pypy/translator/simplify.py	(original)
+++ pypy/dist/pypy/translator/simplify.py	Sun May  8 21:02:21 2005
@@ -135,7 +135,8 @@
                               % opname)
         exlis = implicit_exceptions.get("%s_%s" % (opname, appendix), [])
         if OverflowError not in exlis:
-            raise SyntaxError("ovfcheck: Operation %s has no overflow variant")
+            raise SyntaxError("ovfcheck: Operation %s has no overflow variant"
+                              % opname)
 
     blocks_to_join = False
     for block in blocks:



More information about the Pypy-commit mailing list