This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author r.david.murray
Recipients barry, mglover, r.david.murray
Date 2021-03-18.13:12:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1616073127.46.0.812495855366.issue43493@roundup.psfhosted.org>
In-reply-to
Content
Parsing and newlines have nothing to do with this bug, actually.  I don't think your foldfix post-processing is going to do what you want in the general case.

The source of the bug here is in the folding algorithm in _header_value_parser.  It has checks to see if the "text so far" will fit within the header width, and it starts a new line under vafious conditions.  For example, if there is a single word after Subject: whose length is, say, 70, it would produce the effect you show, because the single word would fit without folding or encoding on a new line.  I don't think this violates the RFC.  What your example shows makes it look like the folder is treating all of the text as if it were a single word, which is obviously wrong.  It is supposed to break at spaces.  You will note that if you increase the repeat count in your example to 16 it folds the line correctly.  So the bug has something to do with the total text so far accumulated for the line being right in that window where it won't fit on the first line but does fit on a line by itself.  This is obviously a bug in the folder, since it should be splitting that text if it isn't a single word, not moving it to a new line as a whole.

Note that this bug is still present on master.
History
Date User Action Args
2021-03-18 13:12:07r.david.murraysetrecipients: + r.david.murray, barry, mglover
2021-03-18 13:12:07r.david.murraysetmessageid: <1616073127.46.0.812495855366.issue43493@roundup.psfhosted.org>
2021-03-18 13:12:07r.david.murraylinkissue43493 messages
2021-03-18 13:12:07r.david.murraycreate