Lines Matching full:float_part
1713 double float_part;
1745 float_part = frexp(self, &exponent); /* self == float_part * 2**exponent exactly */
1746 PyFPE_END_PROTECT(float_part);
1748 for (i=0; i<300 && float_part != floor(float_part) ; i++) {
1749 float_part *= 2.0;
1752 /* self == float_part * 2**exponent exactly and float_part is integral.
1756 numerator = PyLong_FromDouble(float_part);