[pypy-svn] r50226 - pypy/dist/pypy/objspace/std

fijal at codespeak.net fijal at codespeak.net
Mon Dec 31 15:32:35 CET 2007


Author: fijal
Date: Mon Dec 31 15:32:34 2007
New Revision: 50226

Modified:
   pypy/dist/pypy/objspace/std/objspace.py
Log:
I understand now.


Modified: pypy/dist/pypy/objspace/std/objspace.py
==============================================================================
--- pypy/dist/pypy/objspace/std/objspace.py	(original)
+++ pypy/dist/pypy/objspace/std/objspace.py	Mon Dec 31 15:32:34 2007
@@ -370,9 +370,6 @@
 
     def createframe(self, code, w_globals, closure=None):
         from pypy.objspace.std.fake import CPythonFakeCode, CPythonFakeFrame
-        # XXX this function is not inlined. I don't get why, but
-        #     either I'm wrong or it shows some problems with our inlining
-        #     [fijal]
         if not we_are_translated() and isinstance(code, CPythonFakeCode):
             return CPythonFakeFrame(self, code, w_globals)
         else:



More information about the Pypy-commit mailing list