summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-05-11 07:08:12 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-05-11 07:08:12 (GMT)
commit445ff35d5ca434df596524d03497bab23a827fb7 (patch)
tree3e12271b865ad8d6aa28499ad776a2b2fb1e1481 /Lib
parentd809603623b7817353eaf4f4647cb92e635d1206 (diff)
downloadcpython-445ff35d5ca434df596524d03497bab23a827fb7.zip
cpython-445ff35d5ca434df596524d03497bab23a827fb7.tar.gz
cpython-445ff35d5ca434df596524d03497bab23a827fb7.tar.bz2
Fixed typo in a comment of test_support.CleanImport.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index d350ed2..a5d8688 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.