// double PyFloat_GetMin() // Return the minimum normalized positive float DBL_MIN as C double. // // New in version 2.6. func PyFloat_GetMin() float32 { return float32(C.PyFloat_GetMin()) }
// double PyFloat_GetMin() // Return the minimum normalized positive float DBL_MIN as C double. // // New in version 2.6. func PyFloat_GetMin() float64 { return float64(C.PyFloat_GetMin()) }