summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-11-17 22:39:21 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-11-17 22:39:21 (GMT)
commit55329f8fbd7d4beb1483705f8a7bf1419e2eaba6 (patch)
tree9107ea9d0fb5cfa8c39f9ea433a31d5a423dadde /Misc
parentb6e622d184604771088b5d2dd4f4cf0cddb2a3ae (diff)
downloadcpython-55329f8fbd7d4beb1483705f8a7bf1419e2eaba6.zip
cpython-55329f8fbd7d4beb1483705f8a7bf1419e2eaba6.tar.gz
cpython-55329f8fbd7d4beb1483705f8a7bf1419e2eaba6.tar.bz2
Issue #19634: time.strftime("%y") now raises a ValueError on AIX when given a
year before 1900.
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 58c3033..74f5819 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,9 @@ Core and Builtins
Library
-------
+- Issue #19634: time.strftime("%y") now raises a ValueError on AIX when given a
+ year before 1900.
+
- Fix test.support.bind_port() to not cause an error when Python was compiled
on a system with SO_REUSEPORT defined in the headers but run on a system
with an OS kernel that does not support that reasonably new socket option.