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

ac at codespeak.net ac at codespeak.net
Thu Mar 16 10:25:30 CET 2006


Author: ac
Date: Thu Mar 16 10:25:30 2006
New Revision: 24432

Modified:
   pypy/dist/pypy/interpreter/executioncontext.py
Log:
Fix typo

Modified: pypy/dist/pypy/interpreter/executioncontext.py
==============================================================================
--- pypy/dist/pypy/interpreter/executioncontext.py	(original)
+++ pypy/dist/pypy/interpreter/executioncontext.py	Thu Mar 16 10:25:30 2006
@@ -40,7 +40,7 @@
         coobj.w_tracefunc = None
         coobj.w_profilefunc = None
         coobj.is_tracing = 0
-    new_subcontext = staticmethod(new_subcontext)
+    subcontext_new = staticmethod(subcontext_new)
 
     def subcontext_swap(self, coobj):
         self.framestack,    coobj.framestack    = coobj.framestack,     self.framestack



More information about the Pypy-commit mailing list