diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-08-04 19:26:17 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-08-04 19:26:17 (GMT) |
commit | 216dc7b70bb910cbcc85bf95f85dac944397bd71 (patch) | |
tree | f926770ef72ac3366e877cddb787fff796c39344 /Modules/cmathmodule.c | |
parent | 99a13eeed18f533100489e7ca42a89de4e8ec07d (diff) | |
download | cpython-216dc7b70bb910cbcc85bf95f85dac944397bd71.zip cpython-216dc7b70bb910cbcc85bf95f85dac944397bd71.tar.gz cpython-216dc7b70bb910cbcc85bf95f85dac944397bd71.tar.bz2 |
Merged revisions 74305 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k
................
r74305 | mark.dickinson | 2009-08-04 20:25:12 +0100 (Tue, 04 Aug 2009) | 9 lines
Merged revisions 74303 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74303 | mark.dickinson | 2009-08-04 20:22:35 +0100 (Tue, 04 Aug 2009) | 2 lines
Issue #6644: Fix compile error on AIX.
........
................
Diffstat (limited to 'Modules/cmathmodule.c')
-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 56e6bad..fbf6ece 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 |