Skip to content

Commit c122cfe

Browse files
committed
removed errno.EWOULDBLOCK
1 parent f43de29 commit c122cfe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

uhttp/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ def _connect(self):
536536
except OSError as err:
537537
if err.errno in (
538538
errno.EINPROGRESS, errno.EAGAIN,
539-
errno.EALREADY, errno.EWOULDBLOCK):
539+
errno.EALREADY):
540540
self._socket = sock
541541
self._state = STATE_CONNECTING
542542
else:

0 commit comments

Comments
 (0)