[issue25878] CPython on Windows builds with /W3, not /W4

Steve Dower report at bugs.python.org
Sat Jan 16 15:56:27 EST 2016


Steve Dower added the comment:

I made a new patch to replace all of the existing ones here with the two-line version of the change.

I also suppressed warning 4232 about dllimport addresses (essentially, you may get different values when taking the address of an imported function because of the way thunks are generated at compile time - this doesn't matter when you are calling them, only when comparing them), mainly because there's no other way to suppress them.

All warnings about conversions should be suppressed when you make the conversion explicit, and that's the preferable way to fix those.

----------
Added file: http://bugs.python.org/file41635/25878_1.patch

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue25878>
_______________________________________


More information about the Python-bugs-list mailing list