cpython: fad67c66885f (original) (raw)
Mercurial > cpython
changeset 106005:fad67c66885f 3.6
Issue #27961: Define HAVE_LONG_LONG as 1. Fix backward compatibility issue, HAVE_LONG_LONG was defined but empty, whereas it is defined as 1 in Python 3.5. [#27961]
Victor Stinner victor.stinner@gmail.com | |
---|---|
date | Thu, 05 Jan 2017 22:58:53 +0100 |
parents | 52d671684342 |
children | c9b846f48752 505cc50ddc82 |
files | Include/pyport.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Include/pyport.h 2 |
line wrap: on
line diff
--- a/Include/pyport.h +++ b/Include/pyport.h @@ -39,7 +39,7 @@ Used in: Py_SAFE_DOWNCAST // long long is required. Ensure HAVE_LONG_LONG is defined for compatibility. #ifndef HAVE_LONG_LONG -#define HAVE_LONG_LONG +#define HAVE_LONG_LONG 1 #endif #ifndef PY_LONG_LONG #define PY_LONG_LONG long long