[pypy-svn] r64143 - pypy/trunk/pypy/rpython

arigo at codespeak.net arigo at codespeak.net
Thu Apr 16 12:07:40 CEST 2009


Author: arigo
Date: Thu Apr 16 12:07:39 2009
New Revision: 64143

Modified:
   pypy/trunk/pypy/rpython/llinterp.py
Log:
Fix test_lloperation.


Modified: pypy/trunk/pypy/rpython/llinterp.py
==============================================================================
--- pypy/trunk/pypy/rpython/llinterp.py	(original)
+++ pypy/trunk/pypy/rpython/llinterp.py	Thu Apr 16 12:07:39 2009
@@ -883,6 +883,12 @@
     def op_stack_capture(self):
         raise NotImplementedError("stack_capture")
 
+    def op_get_stack_depth_limit(self):
+        raise NotImplementedError("get_stack_depth_limit")
+
+    def op_set_stack_depth_limit(self):
+        raise NotImplementedError("set_stack_depth_limit")
+
     # operations on pyobjects!
     for opname in lloperation.opimpls.keys():
         exec py.code.Source("""



More information about the Pypy-commit mailing list