summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-01-26 23:34:34 (GMT)
committerBrett Cannon <brett@python.org>2012-01-26 23:34:34 (GMT)
commite9cd900585d44b418b2a2235a7eec6e4b362798f (patch)
tree08c29a54e22ffa58670ba749586a3167a4abcbc4 /Misc
parentfc70cbcb9a62f3c36820f1f7dc8d0c30b0135558 (diff)
parentc1b5d34ede2701cf45f35cf52d33d8dca5059ec6 (diff)
downloadcpython-e9cd900585d44b418b2a2235a7eec6e4b362798f.zip
cpython-e9cd900585d44b418b2a2235a7eec6e4b362798f.tar.gz
cpython-e9cd900585d44b418b2a2235a7eec6e4b362798f.tar.bz2
Merge
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a970dc5..8285f35 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.
@@ -1837,6 +1841,9 @@ Tools/Demos
Extension Modules
-----------------
+- Issue #13840: The error message produced by ctypes.create_string_buffer
+ when given a Unicode string has been fixed.
+
- Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by
Vilmos Nebehaj.