If my program crashes before a socket is closed, the next time I run in, I get an error that looks like this;
socket.error: [Errno 48] Address already in use
Changing the port fixes the problem.
Is there any way to avoid this, and why does this happen (when the program exits, shouldn't the socket be garbage collected, and closed)?
netstat -an, you would have seen that your listening port still existed in stateTIME_WAIT. Just a tip, I hope that helps in the future. – ephemient Feb 16 '10 at 3:18