summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-01-24 21:46:33 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-01-24 21:46:33 (GMT)
commitcddcf444b257478eb940c50c78eb86ef40eae16f (patch)
tree6594818ecf14ab507cd08f13e756a90693ed2637 /Misc
parent3dfe55b6ff9e7a74bca94d5b95dbfafb9aa2a987 (diff)
downloadcpython-cddcf444b257478eb940c50c78eb86ef40eae16f.zip
cpython-cddcf444b257478eb940c50c78eb86ef40eae16f.tar.gz
cpython-cddcf444b257478eb940c50c78eb86ef40eae16f.tar.bz2
Merged revisions 68903,68906 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r68903 | mark.dickinson | 2009-01-24 16:40:29 +0000 (Sat, 24 Jan 2009) | 5 lines Issue #1672332: Fix unpickling of subnormal floats, which was raising ValueError on some platforms as a result of the platform strtod setting errno on underflow. ........ r68906 | mark.dickinson | 2009-01-24 21:08:38 +0000 (Sat, 24 Jan 2009) | 2 lines Issue #3657: fix occasional test_pickletools failures. ........
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 53cd724..5f8eda5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -139,6 +139,9 @@ Core and Builtins
Library
-------
+- Issue #1672332: fix unpickling of subnormal floats, which was
+ producing a ValueError on some platforms.
+
- Issue #3881: Help Tcl to load even when started through the
unreadable local symlink to "Program Files" on Vista.