[pypy-svn] r48709 - pypy/dist/pypy/translator/c

fijal at codespeak.net fijal at codespeak.net
Thu Nov 15 14:46:11 CET 2007


Author: fijal
Date: Thu Nov 15 14:46:11 2007
New Revision: 48709

Modified:
   pypy/dist/pypy/translator/c/node.py
Log:
Leave comment that this is really a hack


Modified: pypy/dist/pypy/translator/c/node.py
==============================================================================
--- pypy/dist/pypy/translator/c/node.py	(original)
+++ pypy/dist/pypy/translator/c/node.py	Thu Nov 15 14:46:11 2007
@@ -821,7 +821,7 @@
         # 'fnobj' is one of the ll_xyz() functions with the suggested_primitive
         # flag in pypy.rpython.module.*.  The corresponding C wrappers are
         # written by hand in src/ll_*.h, and declared in extfunc.EXTERNALS.
-        if sandbox and not fnobj._name.startswith('ll_stack_'):
+        if sandbox and not fnobj._name.startswith('ll_stack_'): # XXX!!! Temporary
             return sandbox_stub(fnobj, db)
         db.externalfuncs[fnobj._callable] = fnobj
         return []



More information about the Pypy-commit mailing list