Lines Matching defs:time
24 import time # for mktime
394 # time, # mod time of file (in dos format)
477 time = _unpack_uint16(buffer[12:14])
518 t = (path, compress, data_size, file_size, file_offset, time, date, crc)
588 datapath, compress, data_size, file_size, file_offset, time, date, crc = toc_entry
630 # Lenient date/time comparison function. The precision of the mtime
697 # Convert the date/time values found in the Zip archive to a value
698 # that's compatible with the time stamp stored in .pyc files.
700 return time.mktime((
710 # modification time of the matching .py file and its size,
718 # fetch the time stamp of the .py file for comparison
719 # with an embedded pyc time stamp
720 time = toc_entry[5]
723 return _parse_dostime(date, time), uncompressed_size