[Python-checkins] r63040 - python/trunk/Lib/test/test_support.py

alexandre.vassalotti python-checkins at python.org
Sun May 11 09:08:12 CEST 2008


Author: alexandre.vassalotti
Date: Sun May 11 09:08:12 2008
New Revision: 63040

Log:
Fixed typo in a comment of test_support.CleanImport.


Modified:
   python/trunk/Lib/test/test_support.py

Modified: python/trunk/Lib/test/test_support.py
==============================================================================
--- python/trunk/Lib/test/test_support.py	(original)
+++ python/trunk/Lib/test/test_support.py	Sun May 11 09:08:12 2008
@@ -436,7 +436,7 @@
         for module_name in module_names:
             if module_name in sys.modules:
                 module = sys.modules[module_name]
-                # It is possible that module_name is an just alias for
+                # It is possible that module_name is just an alias for
                 # another module (e.g. stub for modules renamed in 3.x).
                 # In that case, we also need delete the real module to clear
                 # the import cache.


More information about the Python-checkins mailing list