Re: HTTPConnection.send

2013-03-29 Thread dspublic
Thanx for confirmations... I have reported http://bugs.python.org/issue17575 -- http://mail.python.org/mailman/listinfo/python-list

Re: HTTPConnection.send

2013-03-29 Thread Chris Angelico
On Fri, Mar 29, 2013 at 11:27 PM, wrote: > I have a problem with HTTPConnection object send() method (pyver3.3.1). I > want to send data from file-like object with HTTPConnection.send( f ), and I > get a "data should be a bytes-like object or an iterable, ..." exception. I

Re: HTTPConnection.send

2013-03-29 Thread Peter Otten
dspub...@freemail.hu wrote: > I have a problem with HTTPConnection object send() method (pyver3.3.1). I > want to send data from file-like object with HTTPConnection.send( f ), and > I get a "data should be a bytes-like object or an iterable, ..." > exception. I have inve

Re: HTTPConnection.send

2013-03-29 Thread dspublic
Problematical python versions: 3.2+ (2.x, 3.0, 3.1 ok) -- http://mail.python.org/mailman/listinfo/python-list

HTTPConnection.send

2013-03-29 Thread dspublic
Hi! I have a problem with HTTPConnection object send() method (pyver3.3.1). I want to send data from file-like object with HTTPConnection.send( f ), and I get a "data should be a bytes-like object or an iterable, ..." exception. I have investigated a send method, and discovered a p