[pypy-svn] r28401 - pypy/dist/pypy/rpython

antocuni at codespeak.net antocuni at codespeak.net
Tue Jun 6 19:13:09 CEST 2006


Author: antocuni
Date: Tue Jun  6 19:13:09 2006
New Revision: 28401

Modified:
   pypy/dist/pypy/rpython/llinterp.py
Log:
Don't re-wrap LLExceptions.



Modified: pypy/dist/pypy/rpython/llinterp.py
==============================================================================
--- pypy/dist/pypy/rpython/llinterp.py	(original)
+++ pypy/dist/pypy/rpython/llinterp.py	Tue Jun  6 19:13:09 2006
@@ -384,6 +384,8 @@
         obj = self.llinterpreter.typer.type_system.deref(fptr)
         try:
             return obj._callable(*args)
+        except LLException, e:
+            raise
         except Exception:
             self.make_llexception()
 



More information about the Pypy-commit mailing list