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 ned.deily
Recipients chuck, ned.deily, ronaldoussoren
Date 2009-10-03.09:20:18
SpamBayes Score 0.00033784402
Marked as misclassified No
Message-id <1254561620.44.0.232006112783.issue7042@psf.upfronthosting.co.za>
In-reply-to
Content
By default, 10.6 prefers to run 64-bit architectures when available.  You 
can easily tell whether a python 2.x is running as 32-bit or 64-bit by 
checking sys.maxint:

$ /usr/local/bin/python2.6 -c 'import sys; print sys.maxint'
2147483647
$ /usr/bin/python2.6 -c 'import sys; print sys.maxint'
9223372036854775807
History
Date User Action Args
2009-10-03 09:20:20ned.deilysetrecipients: + ned.deily, ronaldoussoren, chuck
2009-10-03 09:20:20ned.deilysetmessageid: <1254561620.44.0.232006112783.issue7042@psf.upfronthosting.co.za>
2009-10-03 09:20:19ned.deilylinkissue7042 messages
2009-10-03 09:20:18ned.deilycreate