Commit 4ca56616 authored by Benjamin Peterson's avatar Benjamin Peterson

all OSErrors should indicate there are no extended attributes (closes #14358)

parent da3d8e05
...@@ -1752,9 +1752,7 @@ def supports_extended_attributes(): ...@@ -1752,9 +1752,7 @@ def supports_extended_attributes():
with open(support.TESTFN, "wb") as fp: with open(support.TESTFN, "wb") as fp:
try: try:
os.fsetxattr(fp.fileno(), b"user.test", b"") os.fsetxattr(fp.fileno(), b"user.test", b"")
except OSError as e: except OSError:
if e.errno != errno.ENOTSUP:
raise
return False return False
finally: finally:
support.unlink(support.TESTFN) support.unlink(support.TESTFN)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment