[pypy-svn] r35521 - pypy/branch/temp/pypy/translator/goal

arigo at codespeak.net arigo at codespeak.net
Sat Dec 9 02:31:36 CET 2006


Author: arigo
Date: Sat Dec  9 02:31:34 2006
New Revision: 35521

Modified:
   pypy/branch/temp/pypy/translator/goal/targetpypystandalone.py
Log:
merging of http://codespeak.net/svn/pypy/branch/jit-real-world/pypy/translator/goal/targetpypystandalone.py
revisions 35112 to 35513:

    ------------------------------------------------------------------------
    r35133 | arigo | 2006-11-29 19:13:19 +0100 (Wed, 29 Nov 2006) | 3 lines
    
    (pedronis, arre, arigo)
    Intermediate check-in.
    
    ------------------------------------------------------------------------
    r35118 | arigo | 2006-11-29 13:45:27 +0100 (Wed, 29 Nov 2006) | 7 lines
    
    (arre, pedronis, arigo)
    
    Be afraid.  Very afraid.  (pedronis)
    
    A branch to experiment with throwing PyPy at the JIT.  (arigo)
    
    
    ------------------------------------------------------------------------


Modified: pypy/branch/temp/pypy/translator/goal/targetpypystandalone.py
==============================================================================
--- pypy/branch/temp/pypy/translator/goal/targetpypystandalone.py	(original)
+++ pypy/branch/temp/pypy/translator/goal/targetpypystandalone.py	Sat Dec  9 02:31:34 2006
@@ -90,6 +90,9 @@
     def handle_config(self, config):
         pass
 
+    def handle_translate_config(self, translateconfig):
+        pass
+
     def print_help(self, config):
         self.opt_parser(config).print_help()
 
@@ -154,6 +157,7 @@
 
     def interface(self, ns):
         for name in ['take_options', 'handle_config', 'print_help', 'target',
+                     'handle_translate_config',
                      'get_additional_config_options']:
             ns[name] = getattr(self, name)
 



More information about the Pypy-commit mailing list