Python select.select() error 10022 on windows?

Are you sure self. Connects is not empty? This reminds me of the error you get on Windows when passing 3 empty lists to select.select().

Are you sure self. Connects is not empty? This reminds me of the error you get on Windows when passing 3 empty lists to select.select().

In any case, 10022 is EINVAL meaning an invalid argument has been supplied. So I'd carefully trace the arguments passed to the function raising the exception (seeing if the sockets are open, etc...).

Soldev by temporary recieve code: def recv(self, sck): data = '' sck. Settimeout(None) data = sck. Recv(1024) sck.

Settimeout(0.1) while 1: line = '' try: line = sck. Recv(16384) except socket. Timeout: break if line == '': break data += line return data.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions