mirror of https://github.com/python/cpython
_ascii_split(): Don't lstrip continuation lines. Closes SF bug #601392.
This commit is contained in:
parent
24d45df3f2
commit
45d9bde6c1
|
@ -250,7 +250,7 @@ class Header:
|
|||
maxlinelen = self._firstlinelen
|
||||
firstline = 0
|
||||
else:
|
||||
line = line.lstrip()
|
||||
#line = line.lstrip()
|
||||
maxlinelen = self._maxlinelen
|
||||
# Short lines can remain unchanged
|
||||
if len(line.replace('\t', SPACE8)) <= maxlinelen:
|
||||
|
|
Loading…
Reference in New Issue