Lines Matching defs:mtime
131 PAX_FIELDS = ("path", "linkpath", "size", "mtime",
142 "mtime": float,
854 mtime = 'Time of last modification.',
884 self.mtime = 0 # modification time
921 name=_KEEP, mtime=_KEEP, mode=_KEEP, linkname=_KEEP,
932 if mtime is not _KEEP:
933 result.mtime = mtime
961 "mtime": self.mtime,
1050 for name, digits in (("uid", 8), ("gid", 8), ("size", 12), ("mtime", 12)):
1125 itn(info.get("mtime", 0), 12, format),
1241 obj.mtime = nti(buf[136:148])
2105 tarinfo.mtime = statres.st_mtime
2148 if tarinfo.mtime is None:
2152 % time.localtime(tarinfo.mtime)[:6])
2284 # extracting contents can reset mtime.
2292 # Set correct owner, mtime and filemode on directories.
2308 mtime, mode) are set unless `set_attrs' is False. If `numeric_owner`
2592 mtime = tarinfo.mtime
2593 if mtime is None:
2598 os.utime(targetpath, (mtime, mtime))