summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2012-01-26 23:08:48 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2012-01-26 23:08:48 (GMT)
commitc1b5d34ede2701cf45f35cf52d33d8dca5059ec6 (patch)
treeeb986539565614701c5fee77b6c69746e68790fc /Misc
parentc9e7ef7d70f531864ffef222ff72ccf75a9425c5 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 70d8095..320e386 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.