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 tim.peters
Recipients alexandre.vassalotti, pitrou, tim.peters
Date 2013-11-23.19:51:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385236264.72.0.60711493858.issue19739@psf.upfronthosting.co.za>
In-reply-to
Content
1>..\Modules\_pickle.c(710): warning C4293: '>>' : shift count negative or too big, undefined behavior
1>..\Modules\_pickle.c(711): warning C4293: '>>' : shift count negative or too big, undefined behavior
1>..\Modules\_pickle.c(712): warning C4293: '>>' : shift count negative or too big, undefined behavior
1>..\Modules\_pickle.c(713): warning C4293: '>>' : shift count negative or too big, undefined behavior
1>..\Modules\_pickle.c(1158): warning C4018: '<' : signed/unsigned mismatch

The first 4 should be easy to fix by using a SIZEOF_SIZE_T >= 8 #ifdef test.  The last is on:

        if (frame_len < n) { ... raise an exception ...

where `frame_len` is size_t and `n` is Py_ssize_t.
History
Date User Action Args
2013-11-23 19:51:04tim.peterssetrecipients: + tim.peters, pitrou, alexandre.vassalotti
2013-11-23 19:51:04tim.peterssetmessageid: <1385236264.72.0.60711493858.issue19739@psf.upfronthosting.co.za>
2013-11-23 19:51:04tim.peterslinkissue19739 messages
2013-11-23 19:51:04tim.peterscreate