summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-05 21:03:08 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-09-05 21:03:08 (GMT)
commit942dd9f3f77eef08fabddbd9fb883a866ad6d4cb (patch)
treef086dc65bde5a7c4c7691b9ff9d2f7290123d23d
parentc7fac12f193342ebe9954dd5b1c4e74db1be2ea8 (diff)
parentf7e2ea2f333f166575dcf6e4ccadf7b3bff6c712 (diff)
downloadcpython-942dd9f3f77eef08fabddbd9fb883a866ad6d4cb.zip
cpython-942dd9f3f77eef08fabddbd9fb883a866ad6d4cb.tar.gz
cpython-942dd9f3f77eef08fabddbd9fb883a866ad6d4cb.tar.bz2
merge 3.5 (#27957)
-rw-r--r--Doc/library/importlib.rst2
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*.