-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
bpo-38252: use 8-byte step to detect ASCII sequence in 64bit Windows build #16334
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
Conversation
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.
Good improve! LGTM
@animalize please resolve the merge conflicts. Thank you! |
I have made the requested changes; please review again |
Thanks for making the requested changes! : please review the changes made to this pull request. |
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. Please add a NEWS entry.
Close and reopen this PR to trigger build bots. |
Thanks for your review. |
In 64-bit Windows builds, C type
unsigned long
is 4-byte integer.Now use
size_t
, it's 8-byte integer in 64-bit Windows builds.https://bugs.python.org/issue38252