Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r92347:a38744e20a86
Date: 2017-09-08 01:11 +0200
http://bitbucket.org/pypy/pypy/changeset/a38744e20a86/

Log:    Add missing import. No clue why, it is not necessary to run the
        tests???

diff --git a/pypy/module/pyexpat/__init__.py b/pypy/module/pyexpat/__init__.py
--- a/pypy/module/pyexpat/__init__.py
+++ b/pypy/module/pyexpat/__init__.py
@@ -53,6 +53,7 @@
 
     def __init__(self, space, w_name):
         "NOT_RPYTHON"
+        from pypy.module.pyexpat import interp_pyexpat
         super(Module, self).__init__(space, w_name)
         ver = space.unwrap(interp_pyexpat.get_expat_version(space))
         assert len(ver) >= 5, (
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to