def stat(self) -> Stat:
# Return a regular file with read permissions to everybody and ZERO
# length!
now = time.time()
return dict(st_mode=(S_IFREG | 0o644),
st_nlink=1,
st_ctime=now,
st_mtime=now,
st_attime=now)
评论列表
文章目录