예제 #1
0
파일: numeric.go 프로젝트: remh/go-python
// 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())
}
예제 #2
0
파일: numeric.go 프로젝트: sbinet/go-python
// 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())
}