Uh oh!
There was an error while loading. Please reload this page.
gh-105059: Fix MSCV compiler warning on PyObject union - #107239
Conversation
Use pragma to ignore the MSCV compiler warning on the PyObject nameless union.
vstinner
commented
Jul 25, 2023
@zooba: Would you be able to check if this change fix the compiler warning for you? These warnings: #105059 (comment) |
vstinner
commented
Jul 25, 2023
I managed to reproduce the issue with this #include<Python.h>intmain () {
return0;
}I open the "Developer Command Prompt", go Python source code directory, and type Output on the main branch: => The Output with my PR: => The waning is gone! |
miss-islington
commented
Jul 25, 2023
Thanks @vstinner for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12. |
bedevere-bot
commented
Jul 25, 2023
GH-107248 is a backport of this pull request to the 3.12 branch. |
bedevere-bot
commented
Jul 25, 2023
|
…107239) Use pragma to ignore the MSCV compiler warning on the PyObject nameless union.
Use pragma to ignore the MSCV compiler warning on the PyObject nameless union.