We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81ad6a1 commit c873550Copy full SHA for c873550
Include/floatobject.h
@@ -22,7 +22,7 @@ PyAPI_DATA(PyTypeObject) PyFloat_Type;
22
#define PyFloat_CheckExact(op) (Py_TYPE(op) == &PyFloat_Type)
23
24
#ifdef Py_NAN
25
-#define Py_RETURN_NAN PyFloat_FromDouble(Py_NAN)
+#define Py_RETURN_NAN return PyFloat_FromDouble(Py_NAN)
26
#endif
27
28
#define Py_RETURN_INF(sign) do \
0 commit comments