Issue 1735632: Add O_NOATIME to os module (original) (raw)

Issue1735632

Created on 2007-06-12 10:20 by cortana, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg32309 - (view) Author: sam morris (cortana) Date: 2007-06-12 10:20
Please add a constant for O_NOATIME to the os module. -- Macro: int O_NOATIME If this bit is set, `read' will not update the access time of the file. *Note File Times::. This is used by programs that do backups, so that backing a file up does not count as reading it. Only the owner of the file or the superuser may use this bit. and possibly even a new character to the 'mode' paramter of the builtin 'open' function to do the same thing.
msg57806 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2007-11-24 13:56
Added the constant in r59172. The behavior is way too special though to warrant a change to builtin open().
History
Date User Action Args
2022-04-11 14:56:24 admin set github: 45086
2007-11-24 13:56:17 georg.brandl set status: open -> closedresolution: acceptedmessages: + nosy: + georg.brandl
2007-11-23 09🔞34 christian.heimes set versions: + Python 2.6, Python 3.0
2007-06-12 10:20:25 cortana create