From: Brett Cannon Date: Thu, 28 Sep 2006 22:10:14 +0000 (+0000) Subject: Very minor grammatical fix in a comment. X-Git-Tag: v2.6a1~2632 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=94b69f6ba30c186a3ba753235828dee1b87a6970;p=python Very minor grammatical fix in a comment. --- diff --git a/Python/import.c b/Python/import.c index 390f9e3292..a04654e343 100644 --- a/Python/import.c +++ b/Python/import.c @@ -1029,7 +1029,7 @@ is_builtin(char *name) /* Return an importer object for a sys.path/pkg.__path__ item 'p', possibly by fetching it from the path_importer_cache dict. If it - wasn't yet cached, traverse path_hooks until it a hook is found + wasn't yet cached, traverse path_hooks until a hook is found that can handle the path item. Return None if no hook could; this tells our caller it should fall back to the builtin import mechanism. Cache the result in path_importer_cache.