diff options
author | Brian Curtin <brian@python.org> | 2011-11-06 19:41:17 (GMT) |
---|---|---|
committer | Brian Curtin <brian@python.org> | 2011-11-06 19:41:17 (GMT) |
commit | 52fbea1d871c99bad3d6f113cebd01ac9c68d5b9 (patch) | |
tree | 1532ea1226432b76942a42344fec4b7c1b8b9944 /Misc/NEWS | |
parent | 9589ab174577773c48492b4e2ad596d4b9c3b120 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |