We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 809dd22 commit 01fde84Copy full SHA for 01fde84
1 file changed
cheroot/connections.py
@@ -370,6 +370,7 @@ def _accept_conn(self, server_socket):
370
"""Accept the connection."""
371
try:
372
sock, addr = server_socket.accept()
373
+ # socket.timeout: OSError subclass (3.3+), TimeoutError alias (3.10+)
374
except socket.timeout:
375
return None
376
except OSError as exc:
0 commit comments