diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-05-24 17:30:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-24 17:30:05 (GMT) |
commit | d309bcc9e36adb2437a02550514df3efeb1b2343 (patch) | |
tree | 6e770d6b58f7888cb00444005e52b8d355bd52e5 /Doc/library/importlib.rst | |
parent | 04a4934a847a10b063291ac54cc8af3c20af4c66 (diff) | |
download | cpython-d309bcc9e36adb2437a02550514df3efeb1b2343.zip cpython-d309bcc9e36adb2437a02550514df3efeb1b2343.tar.gz cpython-d309bcc9e36adb2437a02550514df3efeb1b2343.tar.bz2 |
bpo-44195: Use 'TraversableResources' in the docs to match the implementation. (GH-26317)
(cherry picked from commit 7148293d96843ca868961313b00361504ec0c242)
Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
Diffstat (limited to 'Doc/library/importlib.rst')
-rw-r--r-- | Doc/library/importlib.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 7172ef2..b5ee7a6 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -491,7 +491,7 @@ ABC hierarchy:: .. class:: ResourceReader - *Superseded by TraversableReader* + *Superseded by TraversableResources* An :term:`abstract base class` to provide the ability to read *resources*. @@ -816,7 +816,7 @@ ABC hierarchy:: .. versionadded:: 3.9 -.. class:: TraversableReader +.. class:: TraversableResources An abstract base class for resource readers capable of serving the ``files`` interface. Subclasses ResourceReader and provides |