diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-06-24 22:37:25 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-06-24 22:37:25 (GMT) |
commit | 14b9b110982fd7f00392b898230c4015bd2bdaaa (patch) | |
tree | 77ed33b8f8db6c8b91fd253978ea5bc8c859bca6 /Include/pyport.h | |
parent | b28a375f2f4724c129e8683f548c8f1477e00a68 (diff) | |
download | cpython-14b9b110982fd7f00392b898230c4015bd2bdaaa.zip cpython-14b9b110982fd7f00392b898230c4015bd2bdaaa.tar.gz cpython-14b9b110982fd7f00392b898230c4015bd2bdaaa.tar.bz2 |
If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified.
Diffstat (limited to 'Include/pyport.h')
-rw-r--r-- | Include/pyport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index f16cce9..acb6d5d 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -263,7 +263,7 @@ typedef size_t Py_uhash_t; */ #ifdef HAVE_LONG_LONG # ifndef PY_FORMAT_LONG_LONG -# if defined(MS_WIN64) || defined(MS_WINDOWS) +# ifdef MS_WINDOWS # define PY_FORMAT_LONG_LONG "I64" # else # error "This platform's pyconfig.h needs to define PY_FORMAT_LONG_LONG" |