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 gregory.p.smith
Recipients christian.heimes, collinwinter, gregory.p.smith, jyasskin, loewis, mark.dickinson, pitrou, schuppenies, vstinner
Date 2009-02-18.05:13:30
SpamBayes Score 2.1054454e-06
Marked as misclassified No
Message-id <1234934012.11.0.117592752003.issue4258@psf.upfronthosting.co.za>
In-reply-to
Content
> I would suggest to use 2^30 base only if sizeof(long)>=8 (64 bits
CPU).

Thats not the correct test.  Test for an actual 64-bit build target. 
sizeof(long) and sizeof(long long) are not usefully related to that in
any sort of cross platform manner.  On windows, we'd define the flag for
15 vs 30 bit longs in the build configs for the various build targets. 
On every thing else (autoconf), we can use a configure test to check the
same things that platform.architecture() checks to return '32bit' vs
'64bit'.
History
Date User Action Args
2009-02-18 05:13:32gregory.p.smithsetrecipients: + gregory.p.smith, loewis, collinwinter, mark.dickinson, pitrou, vstinner, christian.heimes, jyasskin, schuppenies
2009-02-18 05:13:32gregory.p.smithsetmessageid: <1234934012.11.0.117592752003.issue4258@psf.upfronthosting.co.za>
2009-02-18 05:13:30gregory.p.smithlinkissue4258 messages
2009-02-18 05:13:30gregory.p.smithcreate