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

tismer at codespeak.net tismer at codespeak.net
Tue Aug 23 18:46:31 CEST 2005


Author: tismer
Date: Tue Aug 23 18:46:30 2005
New Revision: 16313

Modified:
   pypy/dist/pypy/interpreter/pycompiler.py
Log:
indentation error caused a method to vanish :-(

Modified: pypy/dist/pypy/interpreter/pycompiler.py
==============================================================================
--- pypy/dist/pypy/interpreter/pycompiler.py	(original)
+++ pypy/dist/pypy/interpreter/pycompiler.py	Tue Aug 23 18:46:30 2005
@@ -257,9 +257,10 @@
                 print msg
             return printmessage
         ''')
-        def printmessage(self, msg):
-            space = self.space
-            space.call_function(self.w_printmessage, space.wrap(msg))
+
+    def printmessage(self, msg):
+        space = self.space
+        space.call_function(self.w_printmessage, space.wrap(msg))
 
     def _get_compiler(self, mode):
         from pypy.interpreter.error import debug_print



More information about the Pypy-commit mailing list