Merge pull request #6583 from takluyver/win-symlink-tsets

Windows symlink test fixes
This commit is contained in:
Min RK 2014-10-01 11:46:38 -07:00
commit 0d9b7597c3

View File

@ -144,7 +144,10 @@ def test_atomic_writing():
try:
os.symlink(f1, f2)
have_symlink = True
except (AttributeError, NotImplementedError):
except (AttributeError, NotImplementedError, OSError):
# AttributeError: Python doesn't support it
# NotImplementedError: The system doesn't support it
# OSError: The user lacks the privilege (Windows)
have_symlink = False
with nt.assert_raises(CustomExc):