cpython: cf6e9968ebb7 (original) (raw)
Mercurial > cpython
changeset 103934:cf6e9968ebb7 3.6
always define HAVE_LONG_LONG (#27961) [#27961]
Benjamin Peterson benjamin@python.org | |
---|---|
date | Sun, 18 Sep 2016 18:02:58 -0700 |
parents | bdbe09afcd20 |
children | eb0a16c73004 484eddc51842 |
files | Include/pyport.h |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-)[+] [-] Include/pyport.h 3 |
line wrap: on
line diff
--- a/Include/pyport.h +++ b/Include/pyport.h @@ -37,6 +37,9 @@ Used in: Py_SAFE_DOWNCAST
+// long long is required now. Define HAVE_LONG_LONG unconditionally for +// compatibility. +#define HAVE_LONG_LONG #ifndef PY_LONG_LONG #define PY_LONG_LONG long long /* If LLONG_MAX is defined in limits.h, use that. */