diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-06-14 12:12:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-14 12:12:20 (GMT) |
commit | 8a3469047c3c7b68f434ed244ef3ae4292dd8cbc (patch) | |
tree | 429e44857f3333f68d06d0d72c176eddf3319e22 /Doc | |
parent | 83cd968f5cc59ad60b665080087f50fefac17a07 (diff) | |
download | cpython-8a3469047c3c7b68f434ed244ef3ae4292dd8cbc.zip cpython-8a3469047c3c7b68f434ed244ef3ae4292dd8cbc.tar.gz cpython-8a3469047c3c7b68f434ed244ef3ae4292dd8cbc.tar.bz2 |
[3.9] bpo-40924: Remove protocol for supplying Traversable objects from loaders (GH-20820)
Remove protocol that loaders can present a files method as found in importlib_resources 1.3-1.6 (added in Python 3.8b1).
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/importlib.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 99bfeac..201f813 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -813,9 +813,6 @@ ABC hierarchy:: methods. Therefore, any loader supplying TraversableReader also supplies ResourceReader. - Loaders that wish to support resource reading are expected to - implement this interface. - .. versionadded:: 3.9 |