diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-19 01:03:04 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-19 01:03:04 (GMT) |
commit | d1b44d930158b3411eec0b412667d13bb30d5e49 (patch) | |
tree | 7f8d108bc7f3c69fbc2037354a6d6a253ec2ff49 /Include | |
parent | 190a32f3ed9dceee2db51da5c5cbed41e90895c7 (diff) | |
parent | 41e35f37edf760898f9c440ac17a4c542c9d88a1 (diff) | |
download | cpython-d1b44d930158b3411eec0b412667d13bb30d5e49.zip cpython-d1b44d930158b3411eec0b412667d13bb30d5e49.tar.gz cpython-d1b44d930158b3411eec0b412667d13bb30d5e49.tar.bz2 |
merge 3.6
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pyport.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index be1d66d..421b954 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -37,6 +37,9 @@ Used in: Py_SAFE_DOWNCAST * integral synonyms. Only define the ones we actually need. */ +// 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. */ |