diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-05-31 15:52:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-31 15:52:29 (GMT) |
commit | 410b70d39d9d77384f8b8597560f6731530149ca (patch) | |
tree | ffe2cf91cc5f80bc9b81acc951dd315459bbb0d3 /Misc/NEWS.d | |
parent | 142e5c5445c019542246d93fe2f9e195d3131686 (diff) | |
download | cpython-410b70d39d9d77384f8b8597560f6731530149ca.zip cpython-410b70d39d9d77384f8b8597560f6731530149ca.tar.gz cpython-410b70d39d9d77384f8b8597560f6731530149ca.tar.bz2 |
bpo-44246: Entry points performance improvements. (GH-26467)
From importlib_metadata 4.3.1.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-05-31-11-28-03.bpo-44246.nhmt-v.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-05-31-11-28-03.bpo-44246.nhmt-v.rst b/Misc/NEWS.d/next/Library/2021-05-31-11-28-03.bpo-44246.nhmt-v.rst new file mode 100644 index 0000000..727d9fd --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-05-31-11-28-03.bpo-44246.nhmt-v.rst @@ -0,0 +1,3 @@ +In importlib.metadata.entry_points, de-duplication of distributions no +longer requires loading the full metadata for PathDistribution objects, +improving entry point loading performance by ~10x. |