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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc84f8fbb4e6ac4a565330281bf4d68c6332b6e2;p=python Fix a typo in a docstring introduced in r77956. --- diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index f96bad85a7..a9c598cb10 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):