-
-
Notifications
You must be signed in to change notification settings - Fork 30.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GH-100884: email/_header_value_parser: don't encode list separators #100885
Conversation
There already is already a predefined object with the correct properties, use it.
Most changes to Python require a NEWS entry. Please add it using the blurb_it web app or the blurb command-line tool. |
…tors ListSeparator should not be encoded. This could happen when a long line pushes its separator to the next line, which would have been encoded. Fixes python#100884
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Thanks @t-8ch for the PR, and @serhiy-storchaka for merging it 🌮🎉.. I'm working now to backport this PR to: 3.11, 3.12. |
…tors (pythonGH-100885) ListSeparator should not be encoded. This could happen when a long line pushes its separator to the next line, which would have been encoded. (cherry picked from commit 09fab93) Co-authored-by: Thomas Weißschuh <thomas@t-8ch.de>
GH-115592 is a backport of this pull request to the 3.12 branch. |
…tors (pythonGH-100885) ListSeparator should not be encoded. This could happen when a long line pushes its separator to the next line, which would have been encoded. (cherry picked from commit 09fab93) Co-authored-by: Thomas Weißschuh <thomas@t-8ch.de>
GH-115593 is a backport of this pull request to the 3.11 branch. |
…tors (pythonGH-100885) ListSeparator should not be encoded. This could happen when a long line pushes its separator to the next line, which would have been encoded.
…tors (pythonGH-100885) ListSeparator should not be encoded. This could happen when a long line pushes its separator to the next line, which would have been encoded.
@t-8ch @serhiy-storchaka can you take a look at #118643? Seems that this commit may have introduced a regression |
ListSeparator should not be encoded. This could happen when a long line
pushes its separator to the next line, which would have been encoded.
Fixes #100884