Author: Richard Plangger <[email protected]>
Branch: py3.3
Changeset: r80547:b22b2972eec4
Date: 2015-11-05 15:36 +0100
http://bitbucket.org/pypy/pypy/changeset/b22b2972eec4/

Log:    self.ext... was not enough, access the module _imp stored in
        self.imp instead

diff --git a/pypy/module/imp/test/test_app.py b/pypy/module/imp/test/test_app.py
--- a/pypy/module/imp/test/test_app.py
+++ b/pypy/module/imp/test/test_app.py
@@ -74,7 +74,7 @@
                 assert type == 'rb'
 
     def test_ext_suffixes(self):
-        for suffix in self.extension_suffixes():
+        for suffix in self.imp.extension_suffixes():
             assert suffix.endswith(('.pyd', '.so'))
 
     def test_obscure_functions(self):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to