[pypy-svn] pypy default: jit_ffi is no longer a translation option.

alex_gaynor commits-noreply at bitbucket.org
Mon Mar 14 18:51:18 CET 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: 
Changeset: r42629:c651b6e165ea
Date: 2011-03-14 13:51 -0400
http://bitbucket.org/pypy/pypy/changeset/c651b6e165ea/

Log:	jit_ffi is no longer a translation option.

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -80,8 +80,7 @@
     "_rawffi": [("objspace.usemodules.struct", True)],
     "cpyext": [("translation.secondaryentrypoints", "cpyext"),
                ("translation.shared", sys.platform == "win32")],
-    "_ffi": [("translation.jit_ffi", True)],
-    }
+}
 
 module_import_dependencies = {
     # no _rawffi if importing pypy.rlib.clibffi raises ImportError
@@ -352,7 +351,7 @@
         config.objspace.std.suggest(builtinshortcut=True)
         config.objspace.std.suggest(optimized_list_getitem=True)
         config.objspace.std.suggest(getattributeshortcut=True)
-        config.objspace.std.suggest(newshortcut=True)        
+        config.objspace.std.suggest(newshortcut=True)
         if not IS_64_BITS:
             config.objspace.std.suggest(withsmalllong=True)
 


More information about the Pypy-commit mailing list