Issue #28815: Merge test tweak from 3.5

This commit is contained in:
Martin Panter 2017-01-08 01:06:18 +00:00
commit 625fb648f7
1 changed files with 3 additions and 7 deletions

View File

@ -4780,14 +4780,10 @@ def isTipcAvailable():
return False
try:
f = open("/proc/modules")
except IOError as e:
except (FileNotFoundError, IsADirectoryError, PermissionError):
# It's ok if the file does not exist, is a directory or if we
# have not the permission to read it. In any other case it's a
# real error, so raise it again.
if e.errno in (errno.ENOENT, errno.EISDIR, errno.EACCES):
return False
else:
raise
# have not the permission to read it.
return False
with f:
for line in f:
if line.startswith("tipc "):