]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43200: Fix link to shutil.copy() in the shutil doc (GH-24505)
authorZackery Spytz <zspytz@gmail.com>
Sat, 13 Feb 2021 04:57:12 +0000 (21:57 -0700)
committerGitHub <noreply@github.com>
Sat, 13 Feb 2021 04:57:12 +0000 (23:57 -0500)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Doc/library/shutil.rst

index 435787c27661d5d85d8b624b944976431e638184..d5080da15bba41b3c6d2eb996b9871bd38fcd55a 100644 (file)
@@ -443,8 +443,9 @@ Directory and files operations
 Platform-dependent efficient copy operations
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-Starting from Python 3.8 all functions involving a file copy (:func:`copyfile`,
-:func:`copy`, :func:`copy2`, :func:`copytree`, and :func:`move`) may use
+Starting from Python 3.8, all functions involving a file copy
+(:func:`copyfile`, :func:`~shutil.copy`, :func:`copy2`,
+:func:`copytree`, and :func:`move`) may use
 platform-specific "fast-copy" syscalls in order to copy the file more
 efficiently (see :issue:`33671`).
 "fast-copy" means that the copying operation occurs within the kernel, avoiding