[pypy-svn] r66341 - pypy/branch/parser-compiler/pypy/interpreter/astcompiler

benjamin at codespeak.net benjamin at codespeak.net
Sat Jul 18 00:13:34 CEST 2009


Author: benjamin
Date: Sat Jul 18 00:13:33 2009
New Revision: 66341

Modified:
   pypy/branch/parser-compiler/pypy/interpreter/astcompiler/codegen.py
Log:
add dummy method

Modified: pypy/branch/parser-compiler/pypy/interpreter/astcompiler/codegen.py
==============================================================================
--- pypy/branch/parser-compiler/pypy/interpreter/astcompiler/codegen.py	(original)
+++ pypy/branch/parser-compiler/pypy/interpreter/astcompiler/codegen.py	Sat Jul 18 00:13:33 2009
@@ -122,6 +122,9 @@
         self.done_with_future = False
         self._compile(tree)
 
+    def _compile(self, tree):
+        raise NotImplementedError
+
     def current_temporary_name(self):
         name = "_[%i]" % (self.temporary_name_counter,)
         self.temporary_name_counter += 1



More information about the Pypy-commit mailing list