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

tismer at codespeak.net tismer at codespeak.net
Thu Mar 16 23:02:36 CET 2006


Author: tismer
Date: Thu Mar 16 23:02:28 2006
New Revision: 24496

Modified:
   pypy/dist/pypy/interpreter/executioncontext.py
Log:
detabbing

Modified: pypy/dist/pypy/interpreter/executioncontext.py
==============================================================================
--- pypy/dist/pypy/interpreter/executioncontext.py	(original)
+++ pypy/dist/pypy/interpreter/executioncontext.py	Thu Mar 16 23:02:28 2006
@@ -46,12 +46,12 @@
     subcontext_new = staticmethod(subcontext_new)
 
     def subcontext_switch(self, current, next):
-	current.framestack = self.framestack
+        current.framestack = self.framestack
         current.w_tracefunc = self.w_tracefunc
         current.w_profilefunc = self.w_profilefunc
         current.is_tracing = self.is_tracing
 
-	self.framestack = next.framestack
+        self.framestack = next.framestack
         self.w_tracefunc = next.w_tracefunc
         self.w_profilefunc = next.w_profilefunc
         self.is_tracing = next.is_tracing



More information about the Pypy-commit mailing list