diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-05-31 22:29:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-31 22:29:08 (GMT) |
commit | d0991e2db3bb932e2411ee9dca54fd69ff2611c4 (patch) | |
tree | 499dc84556024e949801901084f0f601d37d53f5 /Doc/whatsnew | |
parent | 7207203e1d71e4bf65e5b4991f60e7dc1e35e813 (diff) | |
download | cpython-d0991e2db3bb932e2411ee9dca54fd69ff2611c4.zip cpython-d0991e2db3bb932e2411ee9dca54fd69ff2611c4.tar.gz cpython-d0991e2db3bb932e2411ee9dca54fd69ff2611c4.tar.bz2 |
bpo-44246: Remove note about access by index now that a compatibility shim is offered. (GH-26472) (#26473)
(cherry picked from commit 78d9a9b1904f0e1d9db1e941c19782f4f5a881d4)
Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index 1297a81..1bf4451 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -1039,7 +1039,7 @@ and will be incorrect in some rare cases, including some ``_``-s in importlib.metadata ------------------ -Feature parity with ``importlib_metadata`` 4.2 +Feature parity with ``importlib_metadata`` 4.4 (`history <https://importlib-metadata.readthedocs.io/en/latest/history.html>`_). :ref:`importlib.metadata entry points <entry-points>` @@ -1047,9 +1047,6 @@ now provides a nicer experience for selecting entry points by group and name through a new :class:`importlib.metadata.EntryPoints` class. See the Compatibility Note in the docs for more info on the deprecation and usage. -Incidentally, these changes also removed access by index on the -result of :func:`importlib.metadata.Distribution.entry_points` -(see :issue:`44246` for more detail). Added :func:`importlib.metadata.packages_distributions` for resolving top-level Python modules and packages to their |