diff options
author | Alex Waygood <Alex.Waygood@Gmail.com> | 2022-05-19 15:48:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 15:48:44 (GMT) |
commit | 70aa1b9b912d8254df3c61ae0a55464962f4c087 (patch) | |
tree | d588e576ede01f8a8e3f8b1fab83e756ea31e1d2 /Doc/library/importlib.metadata.rst | |
parent | 8db2b3b6878aba9f12844526bce966b7eed81aee (diff) | |
download | cpython-70aa1b9b912d8254df3c61ae0a55464962f4c087.zip cpython-70aa1b9b912d8254df3c61ae0a55464962f4c087.tar.gz cpython-70aa1b9b912d8254df3c61ae0a55464962f4c087.tar.bz2 |
gh-92417: `importlib` docs: remove references to unsupported Python versions (GH-92424)
Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
Diffstat (limited to 'Doc/library/importlib.metadata.rst')
-rw-r--r-- | Doc/library/importlib.metadata.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/importlib.metadata.rst b/Doc/library/importlib.metadata.rst index b374017..d40ed70 100644 --- a/Doc/library/importlib.metadata.rst +++ b/Doc/library/importlib.metadata.rst @@ -17,9 +17,9 @@ package metadata. Built in part on Python's import system, this library intends to replace similar functionality in the `entry point API`_ and `metadata API`_ of ``pkg_resources``. Along with -:mod:`importlib.resources` in Python 3.7 -and newer (backported as `importlib_resources`_ for older versions of -Python), this can eliminate the need to use the older and less efficient +:mod:`importlib.resources` (with new features backported to the +`importlib_resources`_ package), this can eliminate the need to use the older +and less efficient ``pkg_resources`` package. By "installed package" we generally mean a third-party package installed into |