From: Tim Peters Date: Fri, 8 Sep 2000 15:45:34 +0000 (+0000) Subject: A #define didn't start in column 1. Closes SF bug 113888. X-Git-Tag: v2.0b2~416 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a2eefdc4f92cfd4ddb50ac36bf8d0779e330123;p=python A #define didn't start in column 1. Closes SF bug 113888. --- diff --git a/Include/pyport.h b/Include/pyport.h index b75b5ee731..b43b868052 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