We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12a842c commit 7f04ddaCopy full SHA for 7f04dda
Include/Python.h
@@ -20,6 +20,7 @@
20
#include <ctype.h> // tolower()
21
#include <inttypes.h> // uintptr_t
22
#include <limits.h> // INT_MAX
23
+#include <math.h> // HUGE_VAL
24
#include <stdarg.h> // va_list
25
#include <wchar.h> // wchar_t
26
#ifdef HAVE_STDDEF_H
Include/pyport.h
@@ -184,12 +184,6 @@ typedef Py_ssize_t Py_ssize_clean_t;
184
# define Py_MEMCPY memcpy
185
#endif
186
187
-#ifdef HAVE_IEEEFP_H
188
-#include <ieeefp.h> /* needed for 'finite' declaration on some platforms */
189
-#endif
190
-
191
-#include <math.h> /* Moved here from the math section, before extern "C" */
192
193
/*******************************
194
* stat() and fstat() fiddling *
195
*******************************/
0 commit comments