-
-
Notifications
You must be signed in to change notification settings - Fork 33.9k
gh-143346: Fix calculation of the line width for wrapped Base64 in plistlib #143347
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-143346: Fix calculation of the line width for wrapped Base64 in plistlib #143347
Conversation
| b'</array>\n' | ||
| b'</plist>\n') | ||
|
|
||
| pl = dumps_with_indent(data, b' \t') |
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.
This catches the original bug.
| b'</array>\n' | ||
| b'</plist>\n') | ||
|
|
||
| pl = dumps_with_indent(data, b'\t ') |
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.
This catches a bug in my initial fix in #143216.
| writer.write(data) | ||
| return fp.getvalue() | ||
|
|
||
| pl = dumps_with_indent(data, b' ') |
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.
This tests non-default indentation.
… in plistlib It was incorrect in case of mixed tabs and spaces in indentation.
5be5810 to
389a103
Compare
|
Thanks @serhiy-storchaka for the PR 🌮🎉.. I'm working now to backport this PR to: 3.13, 3.14. |
… in plistlib (pythonGH-143347) It was incorrect in case of mixed tabs and spaces in indentation. (cherry picked from commit 5f28aa2) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
|
GH-143719 is a backport of this pull request to the 3.14 branch. |
… in plistlib (pythonGH-143347) It was incorrect in case of mixed tabs and spaces in indentation. (cherry picked from commit 5f28aa2) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
|
GH-143720 is a backport of this pull request to the 3.13 branch. |
It was incorrect in case of mixed tabs and spaces in indentation.