It will be a while. time.time() returns the time in seconds since the epoch as a float. On UNIX machines the epoch is usually 1970-1-1. IIRC, the epoch on windows is 1601-1-1.
According to sys.float_info:
In [2]: sys.float_info
Out[2]: sys.float_info(max=1.7976931348623157e+308, max_exp=1024, max_10_exp=308, min=2.2250738585072014e-308, min_exp=-1021, min_10_exp=-307, dig=15, mant_dig=53, epsilon=2.220446049250313e-16, radix=2, rounds=1)
So we have
In [3]: 1.7976931348623157e+308/(3600*24*365.0)
Out[3]: 5.700447535712569e+300
years before rollover. :-)