[pypy-svn] r58960 - pypy/branch/2.5-merge/pypy/interpreter

arigo at codespeak.net arigo at codespeak.net
Sat Oct 11 13:05:07 CEST 2008


Author: arigo
Date: Sat Oct 11 13:05:07 2008
New Revision: 58960

Modified:
   pypy/branch/2.5-merge/pypy/interpreter/gateway.py
Log:
One missing re-raise of NotImplementedError :-(


Modified: pypy/branch/2.5-merge/pypy/interpreter/gateway.py
==============================================================================
--- pypy/branch/2.5-merge/pypy/interpreter/gateway.py	(original)
+++ pypy/branch/2.5-merge/pypy/interpreter/gateway.py	Sat Oct 11 13:05:07 2008
@@ -572,6 +572,8 @@
             raise OperationError(space.w_KeyboardInterrupt, space.w_None) 
         except MemoryError: 
             raise OperationError(space.w_MemoryError, space.w_None)
+        except NotImplementedError, e:
+            raise
         except (RuntimeError, DescrMismatch), e: 
             raise OperationError(space.w_RuntimeError, 
                                  space.wrap("internal error: " + str(e))) 



More information about the Pypy-commit mailing list