From: Brett Cannon Date: Wed, 3 Feb 2010 22:13:44 +0000 (+0000) Subject: Fix a typo in a docstring introduced in r77956. X-Git-Tag: v2.7a3~26 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dc84f8fbb4e6ac4a565330281bf4d68c6332b6e2;p=thirdparty%2FPython%2Fcpython.git Fix a typo in a docstring introduced in r77956. --- diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index f96bad85a73c..a9c598cb10af 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):