Message201635
| 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 |
|