[pypy-commit] pypy py3.5: Allow -A imp tests to run on pypy

rlamy pypy.commits at gmail.com
Thu Dec 7 13:03:44 EST 2017


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3.5
Changeset: r93300:2cc79ebab1f2
Date: 2017-12-07 05:33 +0000
http://bitbucket.org/pypy/pypy/changeset/2cc79ebab1f2/

Log:	Allow -A imp tests to run on pypy

diff --git a/pypy/tool/pytest/apptest.py b/pypy/tool/pytest/apptest.py
--- a/pypy/tool/pytest/apptest.py
+++ b/pypy/tool/pytest/apptest.py
@@ -28,7 +28,8 @@
     'struct': '_struct',
     'thread': '_thread',
     'operator': '_operator',
-    'signal': '_signal'}
+    'signal': '_signal',
+    'imp': '_imp'}
 
 class AppError(Exception):
     def __init__(self, excinfo):


More information about the pypy-commit mailing list