diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-11-17 22:39:21 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-11-17 22:39:21 (GMT) |
commit | 55329f8fbd7d4beb1483705f8a7bf1419e2eaba6 (patch) | |
tree | 9107ea9d0fb5cfa8c39f9ea433a31d5a423dadde /Misc | |
parent | b6e622d184604771088b5d2dd4f4cf0cddb2a3ae (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |