diff options
author | Ying Wang <me@yingw787.com> | 2019-05-30 03:25:31 (GMT) |
---|---|---|
committer | Giampaolo Rodola <g.rodola@gmail.com> | 2019-05-30 03:25:31 (GMT) |
commit | a16387ab2d85f19665920bb6ff91a7e57f59dd2a (patch) | |
tree | 9fad8608f044c7e3b4a8b83be21118288343bfc2 /Misc/NEWS.d | |
parent | 80878312316bfb4011157f13cf040f6d885f808b (diff) | |
download | cpython-a16387ab2d85f19665920bb6ff91a7e57f59dd2a.zip cpython-a16387ab2d85f19665920bb6ff91a7e57f59dd2a.tar.gz cpython-a16387ab2d85f19665920bb6ff91a7e57f59dd2a.tar.bz2 |
bpo-24564: shutil.copystat(): ignore EINVAL on os.setxattr() (GH-13369)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-05-16-23-40-36.bpo-24564.lIwV_7.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-05-16-23-40-36.bpo-24564.lIwV_7.rst b/Misc/NEWS.d/next/Library/2019-05-16-23-40-36.bpo-24564.lIwV_7.rst new file mode 100644 index 0000000..27cb617 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-05-16-23-40-36.bpo-24564.lIwV_7.rst @@ -0,0 +1,3 @@ +:func:`shutil.copystat` now ignores :const:`errno.EINVAL` on :func:`os.setxattr` which may occur when copying files on filesystems without extended attributes support.
+
+Original patch by Giampaolo Rodola, updated by Ying Wang.
|