test_macfs found an error on the first day of its existence: round trips for date values to FSSpec.{Get,Set}Dates didn't work in MacPython-OS9. Fixed.

This commit is contained in:
Jack Jansen 2003-01-29 09:56:56 +00:00
parent ecb1104342
commit cbdffcee62
1 changed files with 5 additions and 1 deletions

View File

@ -35,7 +35,11 @@ if time.gmtime(0)[0] == 1970:
t = t + 0x10000000L
return (0, int(t), 0)
else:
def _utc2time(utc): return utc[1]
def _utc2time(utc):
t = utc[1]
if t < 0:
t = t + 0x100000000L
return t
def _time2utc(t):
if t > 0x7fffffff:
t = t - 0x100000000L