From 445ff35d5ca434df596524d03497bab23a827fb7 Mon Sep 17 00:00:00 2001 From: Alexandre Vassalotti Date: Sun, 11 May 2008 07:08:12 +0000 Subject: [PATCH] Fixed typo in a comment of test_support.CleanImport. --- Lib/test/test_support.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index d350ed28b01..a5d86885199 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -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.