mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
gh-121913: Use str(exc) instead of exc.strerror in asyncio.base_events
(#122269)
This commit is contained in:
parent
6c09b8de5c
commit
070f1e2e5b
1 changed files with 2 additions and 3 deletions
|
@ -1028,8 +1028,7 @@ class BaseEventLoop(events.AbstractEventLoop):
|
|||
except OSError as exc:
|
||||
msg = (
|
||||
f'error while attempting to bind on '
|
||||
f'address {laddr!r}: '
|
||||
f'{exc.strerror.lower()}'
|
||||
f'address {laddr!r}: {str(exc).lower()}'
|
||||
)
|
||||
exc = OSError(exc.errno, msg)
|
||||
my_exceptions.append(exc)
|
||||
|
@ -1599,7 +1598,7 @@ class BaseEventLoop(events.AbstractEventLoop):
|
|||
except OSError as err:
|
||||
msg = ('error while attempting '
|
||||
'to bind on address %r: %s'
|
||||
% (sa, err.strerror.lower()))
|
||||
% (sa, str(err).lower()))
|
||||
if err.errno == errno.EADDRNOTAVAIL:
|
||||
# Assume the family is not enabled (bpo-30945)
|
||||
sockets.pop()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue