We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37b3345 commit e318087Copy full SHA for e318087
Modules/mathmodule.c
@@ -3098,6 +3098,7 @@ math_isfinite_impl(PyObject *module, double x)
3098
return PyBool_FromLong((long)isfinite(x));
3099
}
3100
3101
+
3102
/*[clinic input]
3103
math.isnormal
3104
@@ -3114,6 +3115,7 @@ math_isnormal_impl(PyObject *module, double x)
3114
3115
return PyBool_FromLong((long)isnormal(x));
3116
3117
3118
3119
3120
math.issubnormal
3121
@@ -3134,6 +3136,7 @@ math_issubnormal_impl(PyObject *module, double x)
3134
3136
#endif
3135
3137
3138
3139
3140
3141
math.isnan
3142
0 commit comments