[Python-checkins] cpython: More debug output

antoine.pitrou python-checkins at python.org
Mon Feb 27 22:05:10 CET 2012


http://hg.python.org/cpython/rev/586e29658020
changeset:   75323:586e29658020
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Mon Feb 27 22:01:25 2012 +0100
summary:
  More debug output

files:
  Lib/test/test_imp.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/test/test_imp.py b/Lib/test/test_imp.py
--- a/Lib/test/test_imp.py
+++ b/Lib/test/test_imp.py
@@ -328,12 +328,12 @@
         importlib.invalidate_caches()
         expected___file__ = os.sep.join(('.', 'pep3147', '__init__.py'))
         m = __import__('pep3147')
-        self.assertEqual(m.__file__, expected___file__, (m.__file__, m.__path__, sys.path))
+        self.assertEqual(m.__file__, expected___file__, (m.__file__, m.__path__, sys.path, sys.path_importer_cache))
         # Ensure we load the pyc file.
         support.unload('pep3147')
         m = __import__('pep3147')
         support.unload('pep3147')
-        self.assertEqual(m.__file__, expected___file__, (m.__file__, m.__path__, sys.path))
+        self.assertEqual(m.__file__, expected___file__, (m.__file__, m.__path__, sys.path, sys.path_importer_cache))
 
 
 class NullImporterTests(unittest.TestCase):

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list