From dc84f8fbb4e6ac4a565330281bf4d68c6332b6e2 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 3 Feb 2010 22:13:44 +0000 Subject: [PATCH] Fix a typo in a docstring introduced in r77956. --- 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 f96bad85a73..a9c598cb10a 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):