[pypy-svn] r66059 - pypy/branch/pyjitpl5/pypy/rpython

arigo at codespeak.net arigo at codespeak.net
Tue Jun 30 16:38:36 CEST 2009


Author: arigo
Date: Tue Jun 30 16:38:36 2009
New Revision: 66059

Added:
   pypy/branch/pyjitpl5/pypy/rpython/llinterp.py.merge.tmp
      - copied, changed from r66039, pypy/branch/pyjitpl5/pypy/rpython/llinterp.py
Log:
merging of svn+ssh://codespeak.net/svn/pypy/trunk/pypy/rpython/llinterp.py
revisions 62865 to 66039:

    ------------------------------------------------------------------------
    r65525 | pedronis | 2009-06-01 08:22:12 +0200 (Mon, 01 Jun 2009) | 5 lines
    
    reverting 65522, it broke a couple tests in applevel and lib-python tests
    
    not completely clear why, in general our error code is not that well tested by our own tests
    
    
    ------------------------------------------------------------------------
    r65522 | benjamin | 2009-06-01 02:00:54 +0200 (Mon, 01 Jun 2009) | 1 line
    
    normalize raise statements
    ------------------------------------------------------------------------
    r64143 | arigo | 2009-04-16 12:07:39 +0200 (Thu, 16 Apr 2009) | 2 lines
    
    Fix test_lloperation.
    
    ------------------------------------------------------------------------


Copied: pypy/branch/pyjitpl5/pypy/rpython/llinterp.py.merge.tmp (from r66039, pypy/branch/pyjitpl5/pypy/rpython/llinterp.py)
==============================================================================
--- pypy/branch/pyjitpl5/pypy/rpython/llinterp.py	(original)
+++ pypy/branch/pyjitpl5/pypy/rpython/llinterp.py.merge.tmp	Tue Jun 30 16:38:36 2009
@@ -893,6 +893,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