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 poolie
Recipients brett.cannon, jcea, poolie, terry.reedy, vstinner
Date 2011-08-22.03:57:37
SpamBayes Score 1.4924109e-07
Marked as misclassified No
Message-id <1313985459.47.0.595845676768.issue10951@psf.upfronthosting.co.za>
In-reply-to
Content
This fixes every compiler warning so that Python build with -Werror on Ubuntu Oneiric alpha (gcc 4.6.1-7ubuntu1).  

 * PyMem_Resize is a macro that mutates its first argument; the return value shouldn't be used.
 * Some variables in sre are (apparently harmlessly) not used when validating the opcodes.
 * gethostbyname_r return codes weren't used and should be; it is not guaranteed to set h_errno correctly (though it does seem to do so here)
 * a few vairables in pthread and tkappintr are not used in some preprocessor productions.
 * setup.py should detect linux kernel 3.0 as linux, and therefore able to build ossaudiodev

I don't get all the errors mentioned by haypo.  At least some seem already fixed.
History
Date User Action Args
2011-08-22 03:57:39pooliesetrecipients: + poolie, brett.cannon, terry.reedy, jcea, vstinner
2011-08-22 03:57:39pooliesetmessageid: <1313985459.47.0.595845676768.issue10951@psf.upfronthosting.co.za>
2011-08-22 03:57:38poolielinkissue10951 messages
2011-08-22 03:57:38pooliecreate