[issue1627] Problem with httplib and Content-Length: -1

2008-02-23 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r61035. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ _

[issue1627] Problem with httplib and Content-Length: -1

2008-01-19 Thread Steven Downum
Steven Downum added the comment: I have made a patch of the proposed fixed and ran the httplib test afterwards, to make sure it passed. -- nosy: +sdownum Added file: http://bugs.python.org/file9237/1626_patch.diff __ Tracker <[EMAIL PROTECTED]>

[issue1627] Problem with httplib and Content-Length: -1

2008-01-11 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +easy priority: -> low versions: +Python 2.6 -Python 2.5 __ Tracker <[EMAIL PROTECTED]> __ ___ Python

[issue1627] Problem with httplib and Content-Length: -1

2007-12-18 Thread Christian Heimes
Christian Heimes added the comment: Your proposed fixed is not correct: length = self.msg.getheader("content-length") if length and not self.chunked: try: self.length = int(length) except ValueError: pass # patch

[issue1627] Problem with httplib and Content-Length: -1

2007-12-14 Thread Álvaro Iradier
New submission from Álvaro Iradier: When opening an IP Webcam URL with urllib2, the response is a continuous secuence of Jpeg files from the server, preceded by the following headers: Server: DM-Web Content-type: multipart/x-mixed-replace;boundary=0plm(Pico-Web:Server-Push:Boundary-String)1qaz C