Commit 4f5c6a27 authored by Martin Panter's avatar Martin Panter

Issue #28815: Merge test tweak from 3.6

parents aaa67862 625fb648
...@@ -4798,14 +4798,10 @@ def isTipcAvailable(): ...@@ -4798,14 +4798,10 @@ def isTipcAvailable():
return False return False
try: try:
f = open("/proc/modules") 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 # 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 # have not the permission to read it.
# real error, so raise it again. return False
if e.errno in (errno.ENOENT, errno.EISDIR, errno.EACCES):
return False
else:
raise
with f: with f:
for line in f: for line in f:
if line.startswith("tipc "): if line.startswith("tipc "):
......
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