diff options
author | Victor Stinner <vstinner@python.org> | 2021-01-25 13:59:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-25 13:59:02 +0100 |
commit | 483359174e92489e13959977824806734f1a8cdd (patch) | |
tree | 16a4ab14a38585183862a21ef280c42d79d5414b /Doc | |
parent | bpo-42955: Add sys.modules_names (GH-24238) (diff) | |
download | cpython-483359174e92489e13959977824806734f1a8cdd.tar.gz cpython-483359174e92489e13959977824806734f1a8cdd.tar.bz2 cpython-483359174e92489e13959977824806734f1a8cdd.zip |
bpo-42955: Fix sys.module_names doc (GH-24329)
Replace versionchanged markup with versionadded.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sys.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index d536fc9322e..f187895410c 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1077,7 +1077,7 @@ always available. See also the :attr:`sys.builtin_module_names` list. - .. versionchanged:: 3.10 + .. versionadded:: 3.10 .. data:: modules |