Mark Dickinson added the comment:

> That doesn't sound right. It should be available always.

To elaborate: assuming not Windows, the configure script has two checks: if 
AC_CHECK_TYPE(int32_t, ...) succeeds (which should happen whenever int32_t is 
defined in either stdint.h or inttypes.h), it #defines HAVE_INT32_T. If 
AC_TYPE_INT32_T succeeds (which should happen whenever int32_t is *not* defined 
in either stdint.h or inttypes.h), it #defines int32_t to be a suitable type. 
Then the pyport check makes sure than in both circumstances, PY_INT32_T is 
#defined.

I don't believe there are any platforms out there that we care about for Python 
for which both checks fail.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue27350>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to