[pypy-svn] r65220 - pypy/branch/pyjitpl5/pypy/jit/metainterp

arigo at codespeak.net arigo at codespeak.net
Mon May 11 18:15:48 CEST 2009


Author: arigo
Date: Mon May 11 18:15:47 2009
New Revision: 65220

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/history.py
Log:
Shut off a warning.


Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/history.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/history.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/history.py	Mon May 11 18:15:47 2009
@@ -102,6 +102,9 @@
     def sort_key(self):
         raise NotImplementedError
 
+    def set_future_value(self, cpu, j):
+        raise NotImplementedError
+
     def repr_rpython(self):
         return '%s' % self
 



More information about the Pypy-commit mailing list