mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
bpo-40121: Fix exception type in test (GH-19267)
This commit is contained in:
parent
6eb9619c88
commit
3ef4a7e5a7
1 changed files with 1 additions and 1 deletions
|
@ -343,7 +343,7 @@ def test_socket():
|
|||
try:
|
||||
# Don't care if this fails, we just want the audit message
|
||||
sock.bind(('127.0.0.1', 8080))
|
||||
except error:
|
||||
except Exception:
|
||||
pass
|
||||
finally:
|
||||
sock.close()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue