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

tismer at codespeak.net tismer at codespeak.net
Tue Aug 23 17:00:32 CEST 2005


Author: tismer
Date: Tue Aug 23 17:00:31 2005
New Revision: 16284

Modified:
   pypy/dist/pypy/interpreter/pycompiler.py
Log:
ouuupps

Modified: pypy/dist/pypy/interpreter/pycompiler.py
==============================================================================
--- pypy/dist/pypy/interpreter/pycompiler.py	(original)
+++ pypy/dist/pypy/interpreter/pycompiler.py	Tue Aug 23 17:00:31 2005
@@ -244,11 +244,11 @@
         debug_print(" done")
 
     def _load_compilers(self):
-        comp1 = self.space.appexec([], r'''():
+        compile1 = self.space.appexec([], r'''():
             from _stablecompiler import apphook
             return apphook.applevelcompile
         ''')
-        comp2 = self.w_applevelcompile = self.space.appexec([], r'''():
+        compile2 = self.w_applevelcompile = self.space.appexec([], r'''():
             import os
             from _stablecompiler import apphook
             if os.path.exists('fakecompiler.py'):



More information about the Pypy-commit mailing list