summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-05-24 17:30:05 (GMT)
committerGitHub <noreply@github.com>2021-05-24 17:30:05 (GMT)
commitd309bcc9e36adb2437a02550514df3efeb1b2343 (patch)
tree6e770d6b58f7888cb00444005e52b8d355bd52e5
parent04a4934a847a10b063291ac54cc8af3c20af4c66 (diff)
downloadcpython-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>
-rw-r--r--Doc/library/importlib.rst4
-rw-r--r--Misc/NEWS.d/next/Documentation/2021-05-23-09-11-28.bpo-44195.1bqkOs.rst2
2 files changed, 4 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
diff --git a/Misc/NEWS.d/next/Documentation/2021-05-23-09-11-28.bpo-44195.1bqkOs.rst b/Misc/NEWS.d/next/Documentation/2021-05-23-09-11-28.bpo-44195.1bqkOs.rst
new file mode 100644
index 0000000..5f165f1
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2021-05-23-09-11-28.bpo-44195.1bqkOs.rst
@@ -0,0 +1,2 @@
+Corrected references to ``TraversableResources`` in docs. There is no
+``TraversableReader``.