[Python-checkins] r53626 - sandbox/trunk/import_in_py/test_controlled_importlib.py

brett.cannon python-checkins at python.org
Sat Feb 3 06:20:26 CET 2007


Author: brett.cannon
Date: Sat Feb  3 06:20:26 2007
New Revision: 53626

Modified:
   sandbox/trunk/import_in_py/test_controlled_importlib.py
Log:
Note some specifics on what to test when checking for __loader__ removal in
integration tests.


Modified: sandbox/trunk/import_in_py/test_controlled_importlib.py
==============================================================================
--- sandbox/trunk/import_in_py/test_controlled_importlib.py	(original)
+++ sandbox/trunk/import_in_py/test_controlled_importlib.py	Sat Feb  3 06:20:26 2007
@@ -172,6 +172,10 @@
         # not whitelisted.
         pass
 
+    def test_no_loader_attribute(self):
+        # No __loader__ attribute should be exposed on any module or package.
+        # XXX check both modules, packages, and submodules.
+
 
 def test_main():
     test_support.run_unittest(WhitelistTests,


More information about the Python-checkins mailing list