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 scoder
Recipients paul.moore, scoder, steve.dower, tim.golden, zach.ware
Date 2018-10-21.08:29:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1540110546.54.0.788709270274.issue35037@psf.upfronthosting.co.za>
In-reply-to
Content
Some more information. CPython uses this code snippet to decide on the PyLong digit size:

#ifndef PYLONG_BITS_IN_DIGIT
#if SIZEOF_VOID_P >= 8
#define PYLONG_BITS_IN_DIGIT 30
#else
#define PYLONG_BITS_IN_DIGIT 15
#endif
#endif

In MinGW, "SIZEOF_VOID_P" is 4, whereas "sizeof(void*)" resolves to 8.
History
Date User Action Args
2018-10-21 08:29:06scodersetrecipients: + scoder, paul.moore, tim.golden, zach.ware, steve.dower
2018-10-21 08:29:06scodersetmessageid: <1540110546.54.0.788709270274.issue35037@psf.upfronthosting.co.za>
2018-10-21 08:29:06scoderlinkissue35037 messages
2018-10-21 08:29:06scodercreate