Message152920
Updated version of my suggestion:
os.futime(fd, (atime, mtime))
os.utime(path, (atime, mtime), flags=0)
os.utimeat(dirfd, path, (atime, mtime), flags=0)
atime and mtime could be int, float, decimal.Decimal or None.
All other os.*utime*() functions were introduced in 3.3, so they would be removed.
flags argument of os.utime() and os.utimeat() could be 0 or os.SYMLINK_NOFOLLOW. |
|
| Date |
User |
Action |
Args |
| 2012-02-09 00:40:24 | Arfrever | set | recipients:
+ Arfrever, ncoghlan, vstinner, rosslagerwall, python-dev |
| 2012-02-09 00:40:24 | Arfrever | set | messageid: <[email protected]> |
| 2012-02-09 00:40:23 | Arfrever | link | issue13964 messages |
| 2012-02-09 00:40:23 | Arfrever | create | |
|