You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
Python version (& distribution if applicable, e.g. Anaconda): 2.7.13, 3.5.3
Using VS Code or Visual Studio: N/A
Actual behavior
server on linux never accepts connection, i.e. client, _ = sock.accept() in connect() in socket.py never returns. This is due to the listen(0) call in create_server(). This was changed from listen(1) in 322f694. Although listen(0) does work correctly on mac, it does not on linux.
then from the command line, see that telnet localhost 9876 hangs instead of connecting. some background history is at https://bugs.python.org/issue8498
The text was updated successfully, but these errors were encountered:
Environment data
Actual behavior
server on linux never accepts connection, i.e.
client, _ = sock.accept()
inconnect()
in socket.py never returns. This is due to thelisten(0)
call increate_server()
. This was changed fromlisten(1)
in 322f694. Althoughlisten(0)
does work correctly on mac, it does not on linux.Expected behavior
the incoming connection to be accepted
Steps to reproduce:
run:
then from the command line, see that
telnet localhost 9876
hangs instead of connecting. some background history is at https://bugs.python.org/issue8498The text was updated successfully, but these errors were encountered: