[Python-checkins] r74303 - python/trunk/Modules/cmathmodule.c

mark.dickinson python-checkins at python.org
Tue Aug 4 21:22:35 CEST 2009


Author: mark.dickinson
Date: Tue Aug  4 21:22:35 2009
New Revision: 74303

Log:
Issue #6644:  Fix compile error on AIX.


Modified:
   python/trunk/Modules/cmathmodule.c

Modified: python/trunk/Modules/cmathmodule.c
==============================================================================
--- python/trunk/Modules/cmathmodule.c	(original)
+++ python/trunk/Modules/cmathmodule.c	Tue Aug  4 21:22:35 2009
@@ -68,7 +68,7 @@
 	ST_PZERO,	/* 3, +0. */
 	ST_POS,		/* 4, positive finite number (nonzero) */
 	ST_PINF,	/* 5, positive infinity */
-	ST_NAN,		/* 6, Not a Number */
+	ST_NAN		/* 6, Not a Number */
 };
 
 static enum special_types


More information about the Python-checkins mailing list