Message201629
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 |
|
Date |
User |
Action |
Args |
2013-10-29 12:18:13 | vstinner | set | recipients:
+ vstinner, ncoghlan, pitrou, christian.heimes, Arfrever, neologix, python-dev, serhiy.storchaka |
2013-10-29 12:18:13 | vstinner | set | messageid: <1383049093.45.0.186452932766.issue19183@psf.upfronthosting.co.za> |
2013-10-29 12:18:13 | vstinner | link | issue19183 messages |
2013-10-29 12:18:13 | vstinner | create | |
|