This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Docs for importlib.metadata should mention Python version
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.10, Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jaraco Nosy List: ZackerySpytz, eric.araujo, ezio.melotti, jaraco, mdk, methane, miss-islington, pitrou, shreyanavigyan, willingc
Priority: normal Keywords: patch

Created on 2021-04-15 15:54 by pitrou, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 25445 merged ZackerySpytz, 2021-04-16 16:19
PR 25448 closed jaraco, 2021-04-16 20:59
PR 25494 merged jaraco, 2021-04-21 04:02
PR 25495 merged jaraco, 2021-04-21 04:04
Messages (5)
msg391139 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2021-04-15 15:54
https://docs.python.org/3/library/importlib.metadata.html lacks a mention of which Python version saw the introduction of `importlib.metadata` (it definitely doesn't exist in my 3.7 install, for example).
msg391143 - (view) Author: Shreyan Avigyan (shreyanavigyan) * Date: 2021-04-15 17:26
importlib.metadata was introduced in Python 3.8. But you're right the docs should mention about the version importlib.metadata was introduced in.
msg391263 - (view) Author: miss-islington (miss-islington) Date: 2021-04-16 23:13
New changeset adf24bd835ed8f76dcc51aa98c8c54275e86965b by Zackery Spytz in branch 'master':
bpo-43856: Add a versionadded directive to the importlib.metadata docs (GH-25445)
https://github.com/python/cpython/commit/adf24bd835ed8f76dcc51aa98c8c54275e86965b
msg391661 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2021-04-23 06:46
New changeset d4fff1f580aed5d26b9b501d0e626f50da9f7bb7 by Jason R. Coombs in branch '3.9':
bpo-43856: Add a versionadded directive to the importlib.metadata docs (GH-25445)
https://github.com/python/cpython/commit/d4fff1f580aed5d26b9b501d0e626f50da9f7bb7
msg391662 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2021-04-23 06:47
New changeset faad2bd87f9e1c24837dd772f0597f4ab9416c66 by Jason R. Coombs in branch '3.8':
bpo-43856: Add a versionadded directive to the importlib.metadata docs (GH-25445)
https://github.com/python/cpython/commit/faad2bd87f9e1c24837dd772f0597f4ab9416c66
History
Date User Action Args
2022-04-11 14:59:44adminsetgithub: 88022
2021-04-23 13:21:37jaracosetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-04-23 06:47:03methanesetmessages: + msg391662
2021-04-23 06:46:24methanesetnosy: + methane
messages: + msg391661
2021-04-21 04:04:00jaracosetpull_requests: + pull_request24218
2021-04-21 04:02:50jaracosetpull_requests: + pull_request24217
2021-04-16 23:13:57miss-islingtonsetnosy: + miss-islington
messages: + msg391263
2021-04-16 20:59:11jaracosetpull_requests: + pull_request24177
2021-04-16 16:19:29ZackerySpytzsetkeywords: + patch
nosy: + ZackerySpytz

pull_requests: + pull_request24175
stage: needs patch -> patch review
2021-04-15 21:24:34jaracosetassignee: jaraco
2021-04-15 17:26:25shreyanavigyansetnosy: + shreyanavigyan
messages: + msg391143
2021-04-15 15:54:10pitroucreate