[2.7] bpo-36742: Fix urlparse.urlsplit() error message for Unicode URL#13937
Merged
vstinner merged 3 commits intopython:2.7from Jun 11, 2019
vstinner:urlparse_str_errmsg
Merged
[2.7] bpo-36742: Fix urlparse.urlsplit() error message for Unicode URL#13937vstinner merged 3 commits intopython:2.7from vstinner:urlparse_str_errmsg
vstinner merged 3 commits intopython:2.7from
vstinner:urlparse_str_errmsg
Conversation
If urlparse.urlsplit() detects an invalid netloc according to NFKC normalization, the error message type is now str rather than unicode, and use repr() to format the URL, to prevent <exception str() failed> when display the error message.
Member
Author
|
This change fix the bug described at: https://bugs.python.org/issue36742#msg344981 Script: Output without the fix: Output with the fix: |
Member
Author
tirkarthi
reviewed
Jun 10, 2019
Member
Author
tirkarthi
reviewed
Jun 10, 2019
Lib/urlparse.py
Outdated
| u"characters under NFKC normalization") | ||
| raise ValueError("netloc %r contains invalid characters " | ||
| "under NFKC normalization" | ||
| % netloc2) |
Member
There was a problem hiding this comment.
Should netloc be reported in the error message? Python 3 and previous error messages report netloc.
Member
Author
There was a problem hiding this comment.
Oh. You're right. I also fixed this bug and I updated the unit test to test this case.
orsenthil
approved these changes
Jun 10, 2019
Member
Author
|
Thanks for review @tirkarthi and @orsenthil! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
If urlparse.urlsplit() detects an invalid netloc according to NFKC
normalization, the error message type is now str rather than unicode,
and use repr() to format the URL, to prevent <exception str() failed>
when display the error message.
https://bugs.python.org/issue36742