[Python-checkins] r60198 - python/trunk/Include/pyport.h

christian.heimes python-checkins at python.org
Tue Jan 22 16:01:25 CET 2008


Author: christian.heimes
Date: Tue Jan 22 16:01:25 2008
New Revision: 60198

Modified:
   python/trunk/Include/pyport.h
Log:
Fixed a missing (X) in define

Modified: python/trunk/Include/pyport.h
==============================================================================
--- python/trunk/Include/pyport.h	(original)
+++ python/trunk/Include/pyport.h	Tue Jan 22 16:01:25 2008
@@ -406,7 +406,7 @@
  */
 #ifndef Py_IS_FINITE
 #ifdef HAVE_FINITE
-#define Py_IS_FINITE(X) finite
+#define Py_IS_FINITE(X) finite(X)
 #else
 #define Py_IS_FINITE(X) (!Py_IS_INFINITY(X) && !Py_IS_NAN(X))
 #endif


More information about the Python-checkins mailing list