Re: httplib and socket.getaddrinfo

2006-12-23 Thread Gabriel Genellina
At Saturday 23/12/2006 04:21, [EMAIL PROTECTED] wrote: I noticed the following lines from the connect() method of the HTTPConnection class within httplib: for res in socket.getaddrinfo(self.host, self.port, 0, socket.SOCK_STREAM): af, so

httplib and socket.getaddrinfo

2006-12-22 Thread mirandacascade
I noticed the following lines from the connect() method of the HTTPConnection class within httplib: for res in socket.getaddrinfo(self.host, self.port, 0, socket.SOCK_STREAM): af, socktype, proto, canonname, sa = res This led me to the doc