Author: Richard Plangger <planri...@gmail.com>
Branch: py3.3
Changeset: r80635:14fcbf845d84
Date: 2015-11-05 17:49 +0100
http://bitbucket.org/pypy/pypy/changeset/14fcbf845d84/

Log:    pseudo fix of this test, I would remove it. maybe someone wants to
        review this test?

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
@@ -166,6 +166,13 @@
     def test_path_importer_cache(self):
         import os
         import sys
+        # this is the only way this makes sense. _bootstrap
+        # will eventually load os from lib_pypy and place
+        # a file finder in path_importer_cache.
+        # XXX Why not remove this test? XXX
+        sys.path_importer_cache.clear()
+        import sys # sys is looked up in pypy/module thus
+        # lib_pypy will not end up in sys.path_impoter_cache
 
         lib_pypy = os.path.abspath(
             os.path.join(self.file_module, "..", "..", "..", "..", "..", 
"lib_pypy")
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to