[pypy-commit] pypy py3.6: add missing kwarg to runappdirect tests

mattip pypy.commits at gmail.com
Wed Dec 25 15:50:51 EST 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.6
Changeset: r98395:86b879736f67
Date: 2019-12-25 22:50 +0200
http://bitbucket.org/pypy/pypy/changeset/86b879736f67/

Log:	add missing kwarg to runappdirect tests

diff --git a/pypy/module/cpyext/test/test_cpyext.py b/pypy/module/cpyext/test/test_cpyext.py
--- a/pypy/module/cpyext/test/test_cpyext.py
+++ b/pypy/module/cpyext/test/test_cpyext.py
@@ -248,7 +248,7 @@
             cls.preload_builtins(space)
         else:
             def w_import_module(self, name, init=None, body='', filename=None,
-                    include_dirs=None, PY_SSIZE_T_CLEAN=False):
+                    include_dirs=None, PY_SSIZE_T_CLEAN=False, use_imp=False):
                 from extbuild import get_sys_info_app
                 sys_info = get_sys_info_app(self.udir)
                 return sys_info.import_module(


More information about the pypy-commit mailing list