[Python-checkins] [3.10] gh-99795: Fix typo in importlib.resources.abc (GH-99796) (GH-99800)

jaraco webhook-mailer at python.org
Sat Nov 26 13:22:20 EST 2022


https://github.com/python/cpython/commit/3d82b7ed8daa9c30c54257042bbef30f9b195d52
commit: 3d82b7ed8daa9c30c54257042bbef30f9b195d52
branch: 3.10
author: Jason R. Coombs <jaraco at jaraco.com>
committer: jaraco <jaraco at jaraco.com>
date: 2022-11-26T13:22:13-05:00
summary:

[3.10] gh-99795: Fix typo in importlib.resources.abc (GH-99796) (GH-99800)

Changing TraversableReader to TraversableResources at one place of the documentation.

See GH-99795 for more details..
(cherry picked from commit 5f8898216e7b67b7de6b0b1aad9277e88bcebfdb)

Co-authored-by: busywhitespace <busywhitespace at tuta.io>

Co-authored-by: busywhitespace <busywhitespace at tuta.io>

files:
M Doc/library/importlib.rst

diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index 1addba3fb47f..f1cf9eec5d54 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -862,7 +862,7 @@ ABC hierarchy::
     An abstract base class for resource readers capable of serving
     the ``files`` interface. Subclasses ResourceReader and provides
     concrete implementations of the ResourceReader's abstract
-    methods. Therefore, any loader supplying TraversableReader
+    methods. Therefore, any loader supplying TraversableResources
     also supplies ResourceReader.
 
     Loaders that wish to support resource reading are expected to



More information about the Python-checkins mailing list