diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-04-23 06:47:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-23 06:47:00 (GMT) |
commit | faad2bd87f9e1c24837dd772f0597f4ab9416c66 (patch) | |
tree | 30d21afdeb43db573e4700fc663c151950f063d3 | |
parent | c6b50abc6b02a7dc2d9a81dd38d168448444e44d (diff) | |
download | cpython-faad2bd87f9e1c24837dd772f0597f4ab9416c66.zip cpython-faad2bd87f9e1c24837dd772f0597f4ab9416c66.tar.gz cpython-faad2bd87f9e1c24837dd772f0597f4ab9416c66.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
(cherry picked from commit adf24bd835)
Co-authored-by: Zackery Spytz <zspytz@gmail.com>
-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 a057767..5d30b0f 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:: |