]> granicus.if.org Git - python/commit
bpo-34260, shutil: fix copy2 and copystat documentation (GH-8523)
authorZsolt Cserna <cserna.zsolt@gmail.com>
Tue, 23 Oct 2018 10:09:50 +0000 (12:09 +0200)
committerVictor Stinner <vstinner@redhat.com>
Tue, 23 Oct 2018 10:09:50 +0000 (12:09 +0200)
commit4f399be0e70d8b5516b6213568b7665765bb3114
tree2785a86df7076ddecc93e983ab6770fd3cd8cbbb
parentb79b5c09493e98374e48fa122d82dab528fc6e72
bpo-34260, shutil: fix copy2 and copystat documentation (GH-8523)

Fix the documentation of copy2, as it does not copy file ownership (user and
group), only mode, mtime, atime and flags.

The original text was confusing to developers as it suggested that this
command is the same as 'cp -p', but according to cp(1), '-p' copies file
ownership as well.

Clarify which metadata is copied by shutil.copystat in its docstring.
Doc/library/shutil.rst
Lib/shutil.py