[New-bugs-announce] [issue19433] Define PY_UINT64_T on Windows 32bit

Christian Heimes report at bugs.python.org
Tue Oct 29 14:50:22 CET 2013


New submission from Christian Heimes:

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

----------
components: Interpreter Core, Windows
messages: 201635
nosy: brian.curtin, christian.heimes, haypo, loewis, ncoghlan, tim.golden
priority: normal
severity: normal
stage: needs patch
status: open
title: Define PY_UINT64_T on Windows 32bit
type: enhancement
versions: Python 3.4

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue19433>
_______________________________________


More information about the New-bugs-announce mailing list