mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
_ascii_split(): Don't lstrip continuation lines. Closes SF bug #601392.
This commit is contained in:
parent
24d45df3f2
commit
45d9bde6c1
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue