diff options
author | Brett Cannon <brett@python.org> | 2016-08-12 17:56:48 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-08-12 17:56:48 (GMT) |
commit | 6336fb27342e4f5ec76d73182d2c0af764a51777 (patch) | |
tree | 68cd6b8da892ac2d9dcefa3eb32b99409d658b1f /Doc/reference | |
parent | 7f65af3d2d11927141ba6c952da5b7a674452ff1 (diff) | |
download | cpython-6336fb27342e4f5ec76d73182d2c0af764a51777.zip cpython-6336fb27342e4f5ec76d73182d2c0af764a51777.tar.gz cpython-6336fb27342e4f5ec76d73182d2c0af764a51777.tar.bz2 |
Issue #27712: Fix some typos in the import docs.
Thanks to Xiang Zhang for the patch.
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/import.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst index 2144c1f..64302b8 100644 --- a/Doc/reference/import.rst +++ b/Doc/reference/import.rst @@ -774,7 +774,7 @@ hooks <path entry hook>` in this list is called with a single argument, the path entry to be searched. This callable may either return a :term:`path entry finder` that can handle the path entry, or it may raise :exc:`ImportError`. An :exc:`ImportError` is used by the path based finder to -signal that the hook cannot find a :term:`path entry finder`. +signal that the hook cannot find a :term:`path entry finder` for that :term:`path entry`. The exception is ignored and :term:`import path` iteration continues. The hook should expect either a string or bytes object; the encoding of bytes objects @@ -828,7 +828,7 @@ portion. Older path entry finders may implement one of these two deprecated methods instead of ``find_spec()``. The methods are still respected for the - sake of backward compatibility. Howevever, if ``find_spec()`` is + sake of backward compatibility. However, if ``find_spec()`` is implemented on the path entry finder, the legacy methods are ignored. :meth:`~importlib.abc.PathEntryFinder.find_loader` takes one argument, the |