Skip to content

Commit

Permalink
gh-82814: fix shutil access error on WSL (#103790)
Browse files Browse the repository at this point in the history
gh-82814: Adds `errno.EACCES` to the list of ignored errors on
`_copyxattr`.  EPERM and EACCES are different constants but
in general should be treated the same.

News entry authored by: Gregory P. Smith <[email protected]>
  • Loading branch information
alago1 authored Apr 25, 2023
1 parent b51da99 commit 3df3b91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/shutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def _copyxattr(src, dst, *, follow_symlinks=True):
os.setxattr(dst, name, value, follow_symlinks=follow_symlinks)
except OSError as e:
if e.errno not in (errno.EPERM, errno.ENOTSUP, errno.ENODATA,
errno.EINVAL):
errno.EINVAL, errno.EACCES):
raise
else:
def _copyxattr(*args, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Fix a potential ``[Errno 13] Permission denied`` when using :func:`shutil.copystat`
within Windows Subsystem for Linux (WSL) on a mounted filesystem by adding
``errno.EACCES`` to the list of ignored errors within the internal implementation.

0 comments on commit 3df3b91

Please sign in to comment.