[pypy-svn] r48288 - pypy/dist/pypy/interpreter

fijal at codespeak.net fijal at codespeak.net
Sun Nov 4 15:18:28 CET 2007


Author: fijal
Date: Sun Nov  4 15:18:27 2007
New Revision: 48288

Modified:
   pypy/dist/pypy/interpreter/pyopcode.py
Log:
Another harmless warning


Modified: pypy/dist/pypy/interpreter/pyopcode.py
==============================================================================
--- pypy/dist/pypy/interpreter/pyopcode.py	(original)
+++ pypy/dist/pypy/interpreter/pyopcode.py	Sun Nov  4 15:18:27 2007
@@ -1073,6 +1073,11 @@
         next_instr = self.really_handle(frame, unroller)   # JIT hack
         return hint(next_instr, promote=True)
 
+    def really_handle(self, frame, unroller):
+        """ Purely abstract method
+        """
+        raise NotImplementedError
+
 class LoopBlock(FrameBlock):
     """A loop block.  Stores the end-of-loop pointer in case of 'break'."""
 



More information about the Pypy-commit mailing list