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

fijal at codespeak.net fijal at codespeak.net
Mon Dec 31 14:46:48 CET 2007


Author: fijal
Date: Mon Dec 31 14:46:47 2007
New Revision: 50225

Modified:
   pypy/dist/pypy/objspace/std/objspace.py
Log:
A comment about some encountered problems


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 14:46:47 2007
@@ -370,6 +370,9 @@
 
     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