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 zach.ware
Recipients alexandre.vassalotti, christian.heimes, pitrou, tim.peters, zach.ware
Date 2013-11-25.18:32:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385404357.19.0.815019952659.issue19739@psf.upfronthosting.co.za>
In-reply-to
Content
The attached patch fixes the warnings and doesn't appear to break anything obvious.

The first 4 are fixed by reverting Alexandre's change from '#if SIZEOF_SIZE_T' to 'if (sizeof(size_t)'.

The last one is different from the original 5th warning, and is fixed using the same trick that has been used in Modules/audioop.c; that is, use '(-0x7fffffffL - 1)' rather than '-0x80000000L', which MSVC can't seem to handle.
History
Date User Action Args
2013-11-25 18:32:37zach.waresetrecipients: + zach.ware, tim.peters, pitrou, christian.heimes, alexandre.vassalotti
2013-11-25 18:32:37zach.waresetmessageid: <1385404357.19.0.815019952659.issue19739@psf.upfronthosting.co.za>
2013-11-25 18:32:37zach.warelinkissue19739 messages
2013-11-25 18:32:37zach.warecreate