Tim Daneliuk schrieb:
> On older 32 bit Windows systems, sys.platform returns:  'win32'
> 
> What does it return on 64-bit Windows systems?  I'd check myself, but
> I don't have access to 64-bit Windows.

Do you want to know if the current build of Python is a 32 or 64bit build?

>>> import struct
>>> struct.calcsize("P") * 8
64

Christian
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to