summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Include/pyport.h2
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