// double PyFloat_GetMax() // Return the maximum representable finite float DBL_MAX as C double. // // New in version 2.6. func PyFloat_GetMax() float32 { return float32(C.PyFloat_GetMax()) }
// double PyFloat_GetMax() // Return the maximum representable finite float DBL_MAX as C double. // // New in version 2.6. func PyFloat_GetMax() float64 { return float64(C.PyFloat_GetMax()) }