From 1a2eefdc4f92cfd4ddb50ac36bf8d0779e330123 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Fri, 8 Sep 2000 15:45:34 +0000 Subject: [PATCH] A #define didn't start in column 1. Closes SF bug 113888. --- Include/pyport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/pyport.h b/Include/pyport.h index b75b5ee731a..b43b8680528 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