def int_part_modf(x): return umath_core.modf(x)[1]
def frac_part_modf(x): return umath_core.modf(x)[0]