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

pedronis at codespeak.net pedronis at codespeak.net
Tue Apr 19 01:59:51 CEST 2005


Author: pedronis
Date: Tue Apr 19 01:59:51 2005
New Revision: 10841

Modified:
   pypy/dist/pypy/interpreter/interactive.py
Log:
cosmetics



Modified: pypy/dist/pypy/interpreter/interactive.py
==============================================================================
--- pypy/dist/pypy/interpreter/interactive.py	(original)
+++ pypy/dist/pypy/interpreter/interactive.py	Tue Apr 19 01:59:51 2005
@@ -90,9 +90,8 @@
         code.InteractiveConsole.__init__(self)
         self.space = objspace
         self.verbose = verbose
-        self.ec = self.space.createexecutioncontext()
-         
-        space=self.space
+        space = self.space
+        self.ec = space.createexecutioncontext()
 
         mainmodule = main.ensure__main__(space)
         self.w_globals = mainmodule.w_dict



More information about the Pypy-commit mailing list