diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-18 23:22:54 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-18 23:22:54 (GMT) |
commit | 0a8143f6462b491d3f12bfb899efd6e044e350be (patch) | |
tree | 855410e5c18dace91bbbb310b5660a40fb5f1eb6 /pyconfig.h.in | |
parent | 8777bcae2749099b6ea3ac35f079bfa3df470a78 (diff) | |
download | cpython-0a8143f6462b491d3f12bfb899efd6e044e350be.zip cpython-0a8143f6462b491d3f12bfb899efd6e044e350be.tar.gz cpython-0a8143f6462b491d3f12bfb899efd6e044e350be.tar.bz2 |
Applied patch #1635: Float patch for inf and nan on Windows (and other platforms).
The patch unifies float("inf") and repr(float("inf")) on all platforms.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 1ba3e58..26197fb 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -85,6 +85,9 @@ /* Define to 1 if you have the <conio.h> header file. */ #undef HAVE_CONIO_H +/* Define to 1 if you have the `copysign' function. */ +#undef HAVE_COPYSIGN + /* Define to 1 if you have the `ctermid' function. */ #undef HAVE_CTERMID @@ -288,6 +291,15 @@ /* Define to 1 if you have the <io.h> header file. */ #undef HAVE_IO_H +/* Define to 1 if you have the `isfinite' function. */ +#undef HAVE_ISFINITE + +/* Define to 1 if you have the `isinf' function. */ +#undef HAVE_ISINF + +/* Define to 1 if you have the `isnan' function. */ +#undef HAVE_ISNAN + /* Define to 1 if you have the `kill' function. */ #undef HAVE_KILL @@ -1028,3 +1040,4 @@ #endif /*Py_PYCONFIG_H*/ + |