diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-08-04 19:22:35 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-08-04 19:22:35 (GMT) |
commit | 8d5a6522a99466821f9a014e060db879b4ba2749 (patch) | |
tree | e08ee7bd95791428d29e96d8dfd8e6cac994124b /Modules | |
parent | 8fdab9526070362a02eb12f84ecc601e3182bbc2 (diff) | |
download | cpython-8d5a6522a99466821f9a014e060db879b4ba2749.zip cpython-8d5a6522a99466821f9a014e060db879b4ba2749.tar.gz cpython-8d5a6522a99466821f9a014e060db879b4ba2749.tar.bz2 |
Issue #6644: Fix compile error on AIX.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/cmathmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c index 6022cb6..7b2e316 100644 --- a/Modules/cmathmodule.c +++ b/Modules/cmathmodule.c @@ -68,7 +68,7 @@ enum special_types { 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 |