]> granicus.if.org Git - python/commitdiff
Fixed typo in a comment of test_support.CleanImport.
authorAlexandre Vassalotti <alexandre@peadrop.com>
Sun, 11 May 2008 07:08:12 +0000 (07:08 +0000)
committerAlexandre Vassalotti <alexandre@peadrop.com>
Sun, 11 May 2008 07:08:12 +0000 (07:08 +0000)
Lib/test/test_support.py

index d350ed28b018999c9c4aa9365f251b6c1d36d7ac..a5d8688519906ec08cba71b701a2565ae6ff2c78 100644 (file)
@@ -436,7 +436,7 @@ class CleanImport(object):
         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.