Re: An improper change in httplib.py

2015-01-22 Thread Guohua Ouyang
reply to the list and not > just me. > > Kindest regards. > > Mark Lawrence. > > > On Thursday, 22 January 2015, 11:51, Guohua Ouyang > wrote: > > > > thanks, file the issue 23300 > > On Thu, Jan 22, 2015 at 5:06 PM, Mark Lawrence > wrote: >> On 2

An improper change in httplib.py

2015-01-22 Thread Guohua Ouyang
This is my first post to the list, I apologies firstly if I made any mistake. I was trying to get a package in golang behind the http or https proxy, and it reports an error "AttributeError: httpsconnection instance has no attribute '_set_hostport'", details in the bottom. After some trace work,

how to pass a dictionary (including chinese characters) through Queue as is?

2008-10-25 Thread ouyang
? >>> import Queue >>> a = Queue.Queue(0) >>> b = {'a':'中文','b':1232,'c':'abc'} >>> a.put(b) >>> c = a.get() >>> c {'a': '\xd6\xd0\xce\xc4', 'c': 'abc', 'b': 1232} Cheers. Ouyang -- http://mail.python.org/mailman/listinfo/python-list