diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-06-11 18:40:13 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-06-11 18:40:13 (GMT) |
commit | 6ffface4293f20e504de6a7ca012c482a203409d (patch) | |
tree | 06d09d0290dfdaa7c0c990a060dc958710126cdc /Doc/whatsnew | |
parent | 6fe56a329dd427f2a5363b43ad24f04785d2091d (diff) | |
download | cpython-6ffface4293f20e504de6a7ca012c482a203409d.zip cpython-6ffface4293f20e504de6a7ca012c482a203409d.tar.gz cpython-6ffface4293f20e504de6a7ca012c482a203409d.tar.bz2 |
#19840: Add copy_function to shutil.move.
Patch by Claudiu Popa.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 846a416..b5536ad 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -176,6 +176,14 @@ ipaddress network objects from existing addresses (contributed by Peter Moody and Antoine Pitrou in :issue:`16531`). +shutil +------ + +* :func:`~shutil.move` now accepts a *copy_function* argument, allowing, + for example, :func:`~shutil.copy` to be used instead of the default + :func:`~shutil.copy2` if there is a need to ignore metadata. (Contributed by + Claudiu Popa in :issue:`19840`.) + signal ------ |