Chat Client/server Problems On Python
Me and a friend of mine are doing a chat room with python, basically he's doing the server part and I'm doing the GUI and Client part, I don't know why the app just stop to work wi
Solution 1:
When you say connect.join()
you wait for the thread connect
to finish, but it is in an infinite loop, so it is not done until the connection closes.
Post a Comment for "Chat Client/server Problems On Python"