diff options
author | Erlend E. Aasland <erlend@python.org> | 2024-01-22 21:40:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-22 21:40:26 (GMT) |
commit | 1d7bddd9612bcbaaedbc837e2936de773e855411 (patch) | |
tree | 4bde76b36e36cfd15ae372775a7a5ed2866d1b2c /Doc/library/shutil.rst | |
parent | 665b8f365efc4e0063f764e20d3cad13635232f3 (diff) | |
download | cpython-1d7bddd9612bcbaaedbc837e2936de773e855411.zip cpython-1d7bddd9612bcbaaedbc837e2936de773e855411.tar.gz cpython-1d7bddd9612bcbaaedbc837e2936de773e855411.tar.bz2 |
Docs: align usage of versionadded/versionchanged with recommended practice (#114409)
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
Diffstat (limited to 'Doc/library/shutil.rst')
-rw-r--r-- | Doc/library/shutil.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst index f61ef8b..d9ec2cb 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst @@ -289,8 +289,8 @@ Directory and files operations copy the file more efficiently. See :ref:`shutil-platform-dependent-efficient-copy-operations` section. - .. versionadded:: 3.8 - The *dirs_exist_ok* parameter. + .. versionchanged:: 3.8 + Added the *dirs_exist_ok* parameter. .. function:: rmtree(path, ignore_errors=False, onerror=None, *, onexc=None, dir_fd=None) |