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 vstinner
Recipients Arfrever, christian.heimes, ncoghlan, neologix, pitrou, python-dev, serhiy.storchaka, vstinner
Date 2013-10-29.12:18:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383049093.45.0.186452932766.issue19183@psf.upfronthosting.co.za>
In-reply-to
Content
To support Windows 32 bit, the following code in PC/pyconfig.h can be modified to use __int64 or _W64: see ssize_t definition below in the same file.

#ifndef PY_UINT64_T
#if SIZEOF_LONG_LONG == 8
#define HAVE_UINT64_T 1
#define PY_UINT64_T unsigned PY_LONG_LONG
#endif
#endif
History
Date User Action Args
2013-10-29 12:18:13vstinnersetrecipients: + vstinner, ncoghlan, pitrou, christian.heimes, Arfrever, neologix, python-dev, serhiy.storchaka
2013-10-29 12:18:13vstinnersetmessageid: <1383049093.45.0.186452932766.issue19183@psf.upfronthosting.co.za>
2013-10-29 12:18:13vstinnerlinkissue19183 messages
2013-10-29 12:18:13vstinnercreate