summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBrian Curtin <brian@python.org>2011-11-06 19:41:17 (GMT)
committerBrian Curtin <brian@python.org>2011-11-06 19:41:17 (GMT)
commit52fbea1d871c99bad3d6f113cebd01ac9c68d5b9 (patch)
tree1532ea1226432b76942a42344fec4b7c1b8b9944 /Misc/NEWS
parent9589ab174577773c48492b4e2ad596d4b9c3b120 (diff)
downloadcpython-52fbea1d871c99bad3d6f113cebd01ac9c68d5b9.zip
cpython-52fbea1d871c99bad3d6f113cebd01ac9c68d5b9.tar.gz
cpython-52fbea1d871c99bad3d6f113cebd01ac9c68d5b9.tar.bz2
Fix #13327. Remove the need for an explicit None as the second argument to
os.utime in order to update to the current time. The second argument is now optional.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7346348..51f68f4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
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.
+
- Issue #13350: Simplify some C code by replacing most usages of
PyUnicode_Format by PyUnicode_FromFormat.