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
bpo-11717: fix ssize_t redefinition error when targeting Win32 app #24479
Conversation
|
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept this contribution by verifying everyone involved has signed the PSF contributor agreement (CLA). CLA MissingOur records indicate the following people have not signed the CLA: For legal reasons we need all the people listed to sign the CLA before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. If you have recently signed the CLA, please wait at least one business day You can check yourself to see if the CLA has been received. Thanks again for the contribution, we look forward to reviewing it! |
Thanks for taking the time to make this PR (and welcome to Cpython contribution)!
I just have one question:
Edit:
I also forgot to mention, I think you should add a Co-authored-by: Amaury Forgeot d'Arc <amauryfa@gmail.com> to your first message (right above the bugs.python.org link), as this partly uses their patch ;). You can read more about what that is here.
Sure thing :) added to commit message and also to description of PR. |
|
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
…s app Co-authored-by: Amaury Forgeot d'Arc <amauryfa@gmail.com>
|
I have made the requested changes; please review again |
|
Thanks for making the requested changes! @pablogsal: please review the changes made to this pull request. |
…8890) The 3.10 alpha 7 fails to build on windows, see below for the warnings and errors. It seems we should not be using ssize_t rather Py_ssize_t. On windows, ssize_t is not defined anymore in CPython3.10 alpha7 after python/cpython#24479 in response to issue 17717 from 2011, which was merged March 1. Fixes #18888
Co-authored-by: Amaury Forgeot d'Arc amauryfa@gmail.com
https://bugs.python.org/issue11717