diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-09-08 15:45:34 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-09-08 15:45:34 (GMT) |
commit | 1a2eefdc4f92cfd4ddb50ac36bf8d0779e330123 (patch) | |
tree | c7719c6521efc1ab5dd4bf4d40f4063bacc5781f /Include | |
parent | e2bf7e63d6ae8855eef6858551356046169ddfcd (diff) | |
download | cpython-1a2eefdc4f92cfd4ddb50ac36bf8d0779e330123.zip cpython-1a2eefdc4f92cfd4ddb50ac36bf8d0779e330123.tar.gz cpython-1a2eefdc4f92cfd4ddb50ac36bf8d0779e330123.tar.bz2 |
A #define didn't start in column 1. Closes SF bug 113888.
Diffstat (limited to 'Include')
-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 b75b5ee..b43b868 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -171,7 +171,7 @@ extern "C" { * This implementation may set the underflow flag if |X| is very small; * it really can't be implemented correctly (& easily) before C99. */ - #define Py_IS_INFINITY(X) ((X) && (X)*0.5 == (X)) +#define Py_IS_INFINITY(X) ((X) && (X)*0.5 == (X)) /************************************************************************** Prototypes that are missing from the standard include files on some systems |