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 vstinner
Recipients Arfrever, eric.araujo, gregory.p.smith, gvanrossum, larry, loewis, maubp, ncoghlan, pitrou, python-dev, r.david.murray, rosslagerwall, shaurz, vstinner
Date 2012-04-24.22:10:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335305417.55.0.518855288041.issue14127@psf.upfronthosting.co.za>
In-reply-to
Content
> I removed futimens because it's now extraneous.

futimens() has nice feature: it is possible to only update atime only update mtime, or use "now" as the new atime and/or mtime.
	
  3882 If *_nsec is specified as UTIME_NOW, the timestamp is updated to the\n\	
  3883 current time.\n\	
  3884 If *_nsec is specified as UTIME_OMIT, the timestamp is not updated.

os.utimensat() has the same feature. Is it possible that os.utimensat() is not available whereas os.futimens() is availalble?
History
Date User Action Args
2012-04-24 22:10:17vstinnersetrecipients: + vstinner, gvanrossum, loewis, gregory.p.smith, ncoghlan, pitrou, larry, eric.araujo, Arfrever, r.david.murray, maubp, shaurz, rosslagerwall, python-dev
2012-04-24 22:10:17vstinnersetmessageid: <1335305417.55.0.518855288041.issue14127@psf.upfronthosting.co.za>
2012-04-24 22:10:16vstinnerlinkissue14127 messages
2012-04-24 22:10:16vstinnercreate