summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrian Curtin <brian@python.org>2011-11-07 22:30:01 (GMT)
committerBrian Curtin <brian@python.org>2011-11-07 22:30:01 (GMT)
commit304a165426600cbec24fa0f2089a045e44af22db (patch)
tree499dbf048313201afaed92b2e112eafc4a9d942f /Misc
parentbe908405a5ceb28dbbe9f60557bad0e4ed083a49 (diff)
downloadcpython-304a165426600cbec24fa0f2089a045e44af22db.zip
cpython-304a165426600cbec24fa0f2089a045e44af22db.tar.gz
cpython-304a165426600cbec24fa0f2089a045e44af22db.tar.bz2
News updates for #13327.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6c19da8..af4775a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,7 +11,9 @@ Core and Builtins
-----------------
- Issue #13327: Remove the need for an explicit None as the second argument
- to os.utime in order to update to the current time.
+ to os.utime, os.lutimes, os.futimes, os.futimens, os.futimesat, in
+ order to update to the current time. Also added keyword argument
+ handling to os.utimensat in order to remove the need for explicit None.
- Issue #13350: Simplify some C code by replacing most usages of
PyUnicode_Format by PyUnicode_FromFormat.