summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2010-02-03 22:13:44 (GMT)
committerBrett Cannon <bcannon@gmail.com>2010-02-03 22:13:44 (GMT)
commitdc84f8fbb4e6ac4a565330281bf4d68c6332b6e2 (patch)
tree516785c365fef5d7778924d54090c6b13c4530e2 /Lib/test
parent18e4db5ebe8396d06478c0a3fdbf3076e4b747ed (diff)
downloadcpython-dc84f8fbb4e6ac4a565330281bf4d68c6332b6e2.zip
cpython-dc84f8fbb4e6ac4a565330281bf4d68c6332b6e2.tar.gz
cpython-dc84f8fbb4e6ac4a565330281bf4d68c6332b6e2.tar.bz2
Fix a typo in a docstring introduced in r77956.
Diffstat (limited to 'Lib/test')
-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 f96bad8..a9c598c 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -493,7 +493,7 @@ class CleanImport(object):
Use like this:
with CleanImport("foo"):
- importlib.import_modulefoo") # new reference
+ importlib.import_module("foo") # new reference
"""
def __init__(self, *module_names):