summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2019-06-06 02:40:19 (GMT)
committerGitHub <noreply@github.com>2019-06-06 02:40:19 (GMT)
commit4867eaa294c5f5fb360e111d54f3543d502b4f46 (patch)
treebf2efc5ff2878a87d905586f7e5494e80408133c /Doc/whatsnew
parentc4c421d619baf2ff2f7e09f55b7ae22b8f863c7b (diff)
downloadcpython-4867eaa294c5f5fb360e111d54f3543d502b4f46.zip
cpython-4867eaa294c5f5fb360e111d54f3543d502b4f46.tar.gz
cpython-4867eaa294c5f5fb360e111d54f3543d502b4f46.tar.bz2
Add importlib.metadata to what's new. (#13855)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.8.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index 8456a17..bf75387 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -330,7 +330,10 @@ Other Language Changes
New Modules
===========
-* None yet.
+* The new :mod:`importlib.metadata` module provides (provisional) support for
+ reading metadata from third-party packages. For example, you can extract an
+ installed package's version number, list of entry points, and more. See
+ :issue:`34632` for additional details.
Improved Modules