This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author David.Edelsohn
Recipients David.Edelsohn, Dormouse759, hroncok, vstinner
Date 2020-01-29.02:22:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1580264524.23.0.695127229133.issue39460@roundup.psfhosted.org>
In-reply-to
Content
[dje@rawhide ~]$ touch testfn
[dje@rawhide ~]$ python3 -c 'import os; os.utime("testfn", (4386268800, 4386268800))'
[dje@rawhide ~]$ stat testfn
  File: testfn
  Size: 0         	Blocks: 0          IO Block: 4096   regular empty file
Device: fd00h/64768d	Inode: 17887487    Links: 1
Access: (0664/-rw-rw-r--)  Uid: ( 1001/     dje)   Gid: ( 1001/     dje)
Context: unconfined_u:object_r:user_home_t:s0
Access: 2038-01-18 22:14:07.000000000 -0500
Modify: 2038-01-18 22:14:07.000000000 -0500
Change: 2020-01-28 21:19:14.707112199 -0500
 Birth: 2020-01-28 21:19:01.627112199 -0500
[dje@rawhide ~]$ python3 -c 'import os; st=os.stat("testfn"); print(st); print(tuple(st)); print(st.st_mtime_ns)'
os.stat_result(st_mode=33204, st_ino=17887487, st_dev=64768, st_nlink=1, st_uid=1001, st_gid=1001, st_size=0, st_atime=2147483647, st_mtime=2147483647, st_ctime=1580264354)
(33204, 17887487, 64768, 1, 1001, 1001, 0, 2147483647, 2147483647, 1580264354)
2147483647000000000
History
Date User Action Args
2020-01-29 02:22:04David.Edelsohnsetrecipients: + David.Edelsohn, vstinner, hroncok, Dormouse759
2020-01-29 02:22:04David.Edelsohnsetmessageid: <1580264524.23.0.695127229133.issue39460@roundup.psfhosted.org>
2020-01-29 02:22:04David.Edelsohnlinkissue39460 messages
2020-01-29 02:22:04David.Edelsohncreate