Uh oh!
There was an error while loading. Please reload this page.
bpo-41366: Fix clang warning for sign conversion - #21592
Conversation
Affects 3.9 beta and master
the-knights-who-say-ni
commented
Jul 22, 2020
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). Recognized GitHub usernameWe couldn't find a bugs.python.org (b.p.o) account corresponding to the following GitHub usernames: This might be simply due to a missing "GitHub Name" entry in one's b.p.o account settings. This is necessary for legal reasons before we can look at this contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. You can check yourself to see if the CLA has been received. Thanks again for the contribution, we look forward to reviewing it! |
WildCard65
commented
Jul 22, 2020
Are you using a std-C implementation that doesn't define a "size_t" type? |
I see a few other uses of The problem is that Note the Azure error is a timeout. |
@henryiii I ask because Python defines Py_ssize_t to size_t IF it exists. #ifdefHAVE_SSIZE_Ttypedefssize_tPy_ssize_t;
#elifSIZEOF_VOID_P==SIZEOF_SIZE_TtypedefPy_intptr_tPy_ssize_t;
#else# error "Python needs a typedef for Py_ssize_t in pyport.h."
#endifEdit: NVM, ssize_t is signed. |
henryiii
commented
Jul 22, 2020
The issue here is signed vs. unsigned - |
miss-islington
commented
Jul 23, 2020
miss-islington
commented
Jul 23, 2020
Sorry @henryiii and @methane, I had trouble checking out the |
miss-islington
commented
Jul 23, 2020
(cherry picked from commit 680254a) Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
bedevere-bot
commented
Jul 23, 2020
GH-21600 is a backport of this pull request to the 3.9 branch. |
Affects 3.9 beta and master.
Should I make a back port PR too?
https://bugs.python.org/issue41366