summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2011-09-09 02:29:07 (GMT)
committerLarry Hastings <larry@hastings.org>2011-09-09 02:29:07 (GMT)
commit9e3e70b33143be1082f01c14c1be25b0ff0be1bf (patch)
tree0ae3a49ec518b8ca73e0504ef764c66612a7d920 /Misc
parentd169fdcb632bbc024b348422e4988537bc7dfd1b (diff)
downloadcpython-9e3e70b33143be1082f01c14c1be25b0ff0be1bf.zip
cpython-9e3e70b33143be1082f01c14c1be25b0ff0be1bf.tar.gz
cpython-9e3e70b33143be1082f01c14c1be25b0ff0be1bf.tar.bz2
Issue #12904: os.utime, os.futimes, os.lutimes, and os.futimesat now write
atime and mtime with nanosecond precision on modern POSIX platforms.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 730e8e0..84b6be3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #12904: os.utime, os.futimes, os.lutimes, and os.futimesat now write
+ atime and mtime with nanosecond precision on modern POSIX platforms.
+
- Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now
mapped to POSIX errno ENOTDIR (previously EINVAL).