Skip to content

Commit e318087

Browse files
skirpichevpicnixz
andauthored
Apply suggestions from code review
Co-authored-by: Bénédikt Tran <[email protected]>
1 parent 37b3345 commit e318087

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Modules/mathmodule.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3098,6 +3098,7 @@ math_isfinite_impl(PyObject *module, double x)
30983098
return PyBool_FromLong((long)isfinite(x));
30993099
}
31003100

3101+
31013102
/*[clinic input]
31023103
math.isnormal
31033104
@@ -3114,6 +3115,7 @@ math_isnormal_impl(PyObject *module, double x)
31143115
return PyBool_FromLong((long)isnormal(x));
31153116
}
31163117

3118+
31173119
/*[clinic input]
31183120
math.issubnormal
31193121
@@ -3134,6 +3136,7 @@ math_issubnormal_impl(PyObject *module, double x)
31343136
#endif
31353137
}
31363138

3139+
31373140
/*[clinic input]
31383141
math.isnan
31393142

0 commit comments

Comments
 (0)