Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4f5c6a27
Commit
4f5c6a27
authored
Jan 08, 2017
by
Martin Panter
Browse files
Options
Browse Files
Download
Plain Diff
Issue #28815: Merge test tweak from 3.6
parents
aaa67862
625fb648
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
Lib/test/test_socket.py
Lib/test/test_socket.py
+3
-7
No files found.
Lib/test/test_socket.py
View file @
4f5c6a27
...
...
@@ -4798,14 +4798,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 "
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment