summaryrefslogtreecommitdiff
path: root/pyconfig.h.in
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-12-18 23:22:54 +0000
committerChristian Heimes <christian@cheimes.de>2007-12-18 23:22:54 +0000
commit87ce5ae35009dabee050cf7eda7fade3f8490c72 (patch)
tree4e2bfe07f80438e64547f3257eb214afe996d180 /pyconfig.h.in
parentf30259716fd424fb701e0da302a921cd691d9f86 (diff)
downloadcpython-87ce5ae35009dabee050cf7eda7fade3f8490c72.tar.gz
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.in13
1 files changed, 13 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in
index 1ba3e5834e..26197fb01b 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*/
+