Issue #16706: get rid of os.error

This commit is contained in:
Andrew Svetlov 2012-12-18 22:02:39 +02:00
parent a191959849
commit ad28c7f9da
33 changed files with 4089 additions and 4123 deletions

View file

@ -321,7 +321,7 @@ def islink(path):
"""
try:
st = os.lstat(path)
except (os.error, AttributeError):
except (OSError, AttributeError):
return False
return stat.S_ISLNK(st.st_mode)
@ -331,7 +331,7 @@ def lexists(path):
"""Test whether a path exists. Returns True for broken symbolic links"""
try:
st = os.lstat(path)
except (os.error, WindowsError):
except (OSError, WindowsError):
return False
return True