diff options
author | Zackery Spytz <zspytz@gmail.com> | 2021-04-16 23:13:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-16 23:13:38 (GMT) |
commit | adf24bd835ed8f76dcc51aa98c8c54275e86965b (patch) | |
tree | ab1868c0648053601636127f2165735215d38f8d /Doc | |
parent | 7c29ae1f0585378dba4d220a2c0fb5dd49fdab3e (diff) | |
download | cpython-adf24bd835ed8f76dcc51aa98c8c54275e86965b.zip cpython-adf24bd835ed8f76dcc51aa98c8c54275e86965b.tar.gz cpython-adf24bd835ed8f76dcc51aa98c8c54275e86965b.tar.bz2 |
bpo-43856: Add a versionadded directive to the importlib.metadata docs (GH-25445)
Use a versionadded directive to generate the text "New in version
3.8." (to match with the documentation of other modules).
Automerge-Triggered-By: GH:jaraco
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/importlib.metadata.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/importlib.metadata.rst b/Doc/library/importlib.metadata.rst index 3cd200b..0f0a8dd 100644 --- a/Doc/library/importlib.metadata.rst +++ b/Doc/library/importlib.metadata.rst @@ -7,6 +7,8 @@ .. module:: importlib.metadata :synopsis: The implementation of the importlib metadata. +.. versionadded:: 3.8 + **Source code:** :source:`Lib/importlib/metadata.py` .. note:: |