diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-05 21:03:08 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-05 21:03:08 (GMT) |
commit | 942dd9f3f77eef08fabddbd9fb883a866ad6d4cb (patch) | |
tree | f086dc65bde5a7c4c7691b9ff9d2f7290123d23d | |
parent | c7fac12f193342ebe9954dd5b1c4e74db1be2ea8 (diff) | |
parent | f7e2ea2f333f166575dcf6e4ccadf7b3bff6c712 (diff) | |
download | cpython-942dd9f3f77eef08fabddbd9fb883a866ad6d4cb.zip cpython-942dd9f3f77eef08fabddbd9fb883a866ad6d4cb.tar.gz cpython-942dd9f3f77eef08fabddbd9fb883a866ad6d4cb.tar.bz2 |
merge 3.5 (#27957)
-rw-r--r-- | Doc/library/importlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 24b8104..ffd5162 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -118,7 +118,7 @@ Functions :exc:`ValueError` is raised). Otherwise a search using :attr:`sys.meta_path` is done. ``None`` is returned if no loader is found. - A dotted name does not have its parent's implicitly imported as that requires + A dotted name does not have its parents implicitly imported as that requires loading them and that may not be desired. To properly import a submodule you will need to import all parent packages of the submodule and use the correct argument to *path*. |