summaryrefslogtreecommitdiffstats
path: root/Doc/library/shutil.rst
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2021-02-13 04:57:12 (GMT)
committerGitHub <noreply@github.com>2021-02-13 04:57:12 (GMT)
commit762fe7deed34a1d5294bf82071d318c8427b4893 (patch)
treeaf4c142f32ae6dfa703724c23b80dfaba89f5a12 /Doc/library/shutil.rst
parentfd053fdd39fbdf114b4218ea4309666bafa95788 (diff)
downloadcpython-762fe7deed34a1d5294bf82071d318c8427b4893.zip
cpython-762fe7deed34a1d5294bf82071d318c8427b4893.tar.gz
cpython-762fe7deed34a1d5294bf82071d318c8427b4893.tar.bz2
bpo-43200: Fix link to shutil.copy() in the shutil doc (GH-24505)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Doc/library/shutil.rst')
-rw-r--r--Doc/library/shutil.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst
index 435787c..d5080da 100644
--- a/Doc/library/shutil.rst
+++ b/Doc/library/shutil.rst
@@ -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