diff options
author | Brett Cannon <bcannon@gmail.com> | 2006-09-28 22:10:14 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2006-09-28 22:10:14 (GMT) |
commit | 94b69f6ba30c186a3ba753235828dee1b87a6970 (patch) | |
tree | e699026b7b17e308c11ef2d9d365f015a91deff6 /Python | |
parent | 656aee7c442e34530c373b611c01903e7179e94b (diff) | |
download | cpython-94b69f6ba30c186a3ba753235828dee1b87a6970.zip cpython-94b69f6ba30c186a3ba753235828dee1b87a6970.tar.gz cpython-94b69f6ba30c186a3ba753235828dee1b87a6970.tar.bz2 |
Very minor grammatical fix in a comment.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index 390f9e3..a04654e 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. |