[issue16037] httplib: header parsing is not unlimited

2013-09-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Thanks! -- versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue16037] httplib: header parsing is not unlimited

2013-09-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 582e5072ff89 by Barry Warsaw in branch '2.6': - Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more http://hg.python.org/cpython/rev/582e5072ff89 -- ___ Python tracker

[issue16037] httplib: header parsing is not unlimited

2013-09-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I'm just going to go ahead and commit this patch to 2.6 with the change I mentioned. Does anything else need to be done for 2.6? -- ___ Python tracker __

[issue16037] httplib: header parsing is not unlimited

2013-09-29 Thread Jyrki Pulliainen
Jyrki Pulliainen added the comment: I'm fine with not introducing a new exception for 2.6 (or any other version for that matter), so go for it :) -- ___ Python tracker ___ _

[issue16037] httplib: header parsing is not unlimited

2013-09-29 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: As we discussed in other issues regarding the similar problem, I don't really want to introduce a new exception in a point release of 2.6. Is there any reason not to just raise HTTPException with the error message text? Code that has to work across multiple

[issue16037] httplib: header parsing is not unlimited

2013-09-15 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- title: httplib: header parsing is not delimited -> httplib: header parsing is not unlimited versions: +Python 3.1 ___ Python tracker