mirror of https://github.com/python/cpython
all OSErrors should indicate there are no extended attributes (closes #14358)
This commit is contained in:
parent
da3d8e05b6
commit
4ca5661669
|
@ -1752,9 +1752,7 @@ def supports_extended_attributes():
|
|||
with open(support.TESTFN, "wb") as fp:
|
||||
try:
|
||||
os.fsetxattr(fp.fileno(), b"user.test", b"")
|
||||
except OSError as e:
|
||||
if e.errno != errno.ENOTSUP:
|
||||
raise
|
||||
except OSError:
|
||||
return False
|
||||
finally:
|
||||
support.unlink(support.TESTFN)
|
||||
|
|
Loading…
Reference in New Issue