-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
gh-127740: For odd-length input to bytes.fromhex(...) change th 8000 e error message to ValueError: fromhex() arg must be of even length #127756
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
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
b5b0da7
gh-127740: For odd-length input to bytes.fromhex(...) change the erro…
srinivasreddy 14b7d5e
Introduce space between variables
srinivasreddy f3bfe85
gh-127740: Improve code, consolidate two variables into one
srinivasreddy 5a55e24
Check the logic inside of the loop, instead of checking eagerly
srinivasreddy a3ba0e7
Remove dead variable
srinivasreddy ee7947a
Fix a bug in logic
srinivasreddy 879994e
Add some more tests
srinivasreddy ad96b89
Improve tests
srinivasreddy 95744bd
Revert the change that is not necessary
srinivasreddy 6929a4d
Move everthing to error labels
srinivasreddy aa6684b
Remove comments
srinivasreddy bf3ace9
Add tests and update logic
srinivasreddy 3588d18
Update tests
srinivasreddy 504f4ed
Add tests and update logic
srinivasreddy 7bab683
Change the invalid_char value to -1
srinivasreddy 7c819c1
Update test case
srinivasreddy 862bfd5
gh-127740: Improve error messages as suggested by @hauntsaninja
srinivasreddy 6cc9305
Update test cases
8000
srinivasreddy c34696e
gh-127740: NULL at the end is mapped to 37
srinivasreddy 82762db
gh-127740: Reintroduce the space back
srinivasreddy 6628ea7
gh-127740: Check if we had a second digit
srinivasreddy b20e248
Add News entry
srinivasreddy cbf50b4
Fix lint
srinivasreddy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
3 changes: 3 additions & 0 deletions
3
Misc/NEWS.d/next/Core_and_Builtins/2024-12-10-21-08-05.gh-issue-127740.0tWC9h.rst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Fix error message in :func:`bytes.fromhex` when given an odd number of | ||
digits to properly indicate that an even number of hexadecimal digits is | ||
required. |
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
Oops, something went wrong.
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.
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.
nit: would be nice to have a test case where the string is of even length, e.g. " aaa" and test cases where we check the error message for " aa a " / " aa a a "
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.
sorry for going ahead and merging @hauntsaninja. I should have waited for more input from you.
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.
#127818
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.
oh all good, was just a nit and commits are cheap :-) thanks for reviewing!