Author: Armin Rigo <ar...@tunes.org>
Branch: py3.5
Changeset: r88796:bdbd6c72e191
Date: 2016-12-01 16:48 +0000
http://bitbucket.org/pypy/pypy/changeset/bdbd6c72e191/

Log:    Allow cffi compilation and extension-finding to work even if cpyext
        is disabled

diff --git a/pypy/module/imp/interp_imp.py b/pypy/module/imp/interp_imp.py
--- a/pypy/module/imp/interp_imp.py
+++ b/pypy/module/imp/interp_imp.py
@@ -9,7 +9,7 @@
 
 def extension_suffixes(space):
     suffixes_w = []
-    if space.config.objspace.usemodules.cpyext:
+    if 1:   #if space.config.objspace.usemodules.cpyext:
         suffixes_w.append(space.wrap(importing.get_so_extension(space)))
     return space.newlist(suffixes_w)
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to