This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author neologix
Recipients neologix, pitrou, vstinner
Date 2014-07-30.21:51:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1406757101.06.0.990367547704.issue22110@psf.upfronthosting.co.za>
In-reply-to
Content
The patch attached enables -Wsign-compare and -Wunreachable-code if supported by the compiler.
AFAICT, mixed sign comparison warning is automatically enabled by Microsoft's compiler, and is usually a good thing.
It does add some warnings though.

As for unreachable code, it's also usually a good thing, since it can be a source of bugs. Note that it's not enabled in debug mode, since in debug mode the code paths aren't the same.
History
Date User Action Args
2014-07-30 21:51:41neologixsetrecipients: + neologix, pitrou, vstinner
2014-07-30 21:51:41neologixsetmessageid: <1406757101.06.0.990367547704.issue22110@psf.upfronthosting.co.za>
2014-07-30 21:51:40neologixlinkissue22110 messages
2014-07-30 21:51:40neologixcreate