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 jwilk
Recipients eric.araujo, jwilk, tarek
Date 2013-05-20.21:27:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1369085242.54.0.746637584547.issue18027@psf.upfronthosting.co.za>
In-reply-to
Content
Currently distutils accesses stat_result timestamps like this:

  os.stat(source)[ST_MTIME]

But, for compatibility with older Python versions, the above method gives you at most 1-second resolution. It should do it like this instead:

  os.stat(source).st_mtime
History
Date User Action Args
2013-05-20 21:27:22jwilksetrecipients: + jwilk, tarek, eric.araujo
2013-05-20 21:27:22jwilksetmessageid: <1369085242.54.0.746637584547.issue18027@psf.upfronthosting.co.za>
2013-05-20 21:27:22jwilklinkissue18027 messages
2013-05-20 21:27:22jwilkcreate