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 christian.heimes
Recipients brian.curtin, christian.heimes, loewis, ncoghlan, tim.golden, vstinner
Date 2013-10-29.13:50:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383054622.8.0.294038814234.issue19433@psf.upfronthosting.co.za>
In-reply-to
Content
For PEP 456 it would be useful to have PY_UINT64_T on 32bit Windows. Does anybody see a problem with Victor's idea? I like it.

Victor wrote in http://bugs.python.org/issue19183#msg201629:

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 13:50:23christian.heimessetrecipients: + christian.heimes, loewis, ncoghlan, vstinner, tim.golden, brian.curtin
2013-10-29 13:50:22christian.heimessetmessageid: <1383054622.8.0.294038814234.issue19433@psf.upfronthosting.co.za>
2013-10-29 13:50:22christian.heimeslinkissue19433 messages
2013-10-29 13:50:22christian.heimescreate