This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skrah
Recipients Arfrever, brett.cannon, pitrou, python-dev, skrah
Date 2012-07-03.22:13:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1341353638.96.0.671171410233.issue15210@psf.upfronthosting.co.za>
In-reply-to
Content
If I comment out this, both tests run OK (I don't know if that
breaks anything else though):

diff --git a/Lib/importlib/test/test_api.py b/Lib/importlib/test/test_api.py
--- a/Lib/importlib/test/test_api.py
+++ b/Lib/importlib/test/test_api.py
@@ -172,7 +172,7 @@
                 del sys.modules[name]
             except KeyError:
                 continue
-        modules['_frozen_importlib'] = None
+        # modules['_frozen_importlib'] = None
         import importlib
         for name, module in modules.items():
             sys.modules[name] = module
History
Date User Action Args
2012-07-03 22:13:59skrahsetrecipients: + skrah, brett.cannon, pitrou, Arfrever, python-dev
2012-07-03 22:13:58skrahsetmessageid: <1341353638.96.0.671171410233.issue15210@psf.upfronthosting.co.za>
2012-07-03 22:13:58skrahlinkissue15210 messages
2012-07-03 22:13:58skrahcreate