[pypy-svn] r73945 - pypy/trunk/pypy/rlib

fijal at codespeak.net fijal at codespeak.net
Wed Apr 21 17:10:13 CEST 2010


Author: fijal
Date: Wed Apr 21 17:10:12 2010
New Revision: 73945

Modified:
   pypy/trunk/pypy/rlib/rlocale.py
Log:
I think all those should be sandboxsafe


Modified: pypy/trunk/pypy/rlib/rlocale.py
==============================================================================
--- pypy/trunk/pypy/rlib/rlocale.py	(original)
+++ pypy/trunk/pypy/rlib/rlocale.py	Wed Apr 21 17:10:12 2010
@@ -145,7 +145,8 @@
 def external(name, args, result, calling_conv='c'):
     return rffi.llexternal(name, args, result,
                            compilation_info=CConfig._compilation_info_,
-                           calling_conv=calling_conv)
+                           calling_conv=calling_conv,
+                           sandboxsafe=True)
 
 _setlocale = external('setlocale', [rffi.INT, rffi.CCHARP], rffi.CCHARP)
 



More information about the Pypy-commit mailing list