diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2012-01-26 23:08:48 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2012-01-26 23:08:48 (GMT) |
commit | c1b5d34ede2701cf45f35cf52d33d8dca5059ec6 (patch) | |
tree | eb986539565614701c5fee77b6c69746e68790fc /Misc | |
parent | c9e7ef7d70f531864ffef222ff72ccf75a9425c5 (diff) | |
download | cpython-c1b5d34ede2701cf45f35cf52d33d8dca5059ec6.zip cpython-c1b5d34ede2701cf45f35cf52d33d8dca5059ec6.tar.gz cpython-c1b5d34ede2701cf45f35cf52d33d8dca5059ec6.tar.bz2 |
Issue #13847: time.localtime() and time.gmtime() now raise an OSError instead
of ValueError on failure. time.ctime() and time.asctime() now raises an
OSError if localtime() failed.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -461,6 +461,10 @@ Core and Builtins Library ------- +- Issue #13847: time.localtime() and time.gmtime() now raise an OSError instead + of ValueError on failure. time.ctime() and time.asctime() now raises an + OSError if localtime() failed. + - Issue #13862: Fix spurious failure in test_zlib due to runtime/compile time minor versions not matching. |