On Jan 3, 2011, at 10:38 AM, Jerry Chen wrote: > Otherwise, having the ssl package as a dependency for 2.5 sounds good to me.
I have introduced both simplejson and ssl as dependencies for <2.6 in setup.py. >> 2. library does not work because I have used >> *socket.create_connection* convenience method >> which is not available in python < 2.6 (this can be easily fixed by changing >> it to* sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM); >> sock.connect(self.host, self.port)*) > > Thanks for catching that. I need to find a 2.5 setup to play with. I have fixed this in r1054897. Cheers, Jerry
