summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-09-29 19:21:35 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-09-29 19:21:35 (GMT)
commit2683ab04a6859681149d6c0851ece719fdc8237c (patch)
tree69b53685dcc216f3b68a2e60b592d7c0a063f363 /Misc
parentead1d62d3239109656d4b3fd2f99461dddb2fae1 (diff)
downloadcpython-2683ab04a6859681149d6c0851ece719fdc8237c.zip
cpython-2683ab04a6859681149d6c0851ece719fdc8237c.tar.gz
cpython-2683ab04a6859681149d6c0851ece719fdc8237c.tar.bz2
Merged revisions 75141 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75141 | mark.dickinson | 2009-09-29 20:01:06 +0100 (Tue, 29 Sep 2009) | 3 lines Issue #7019: Unmarshalling of bad long data could produce unnormalized PyLongs. Raise ValueError instead. ........
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 75f6947..f54fbb7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Issue #7019: Raise ValueError when unmarshalling bad long data, instead
+ of producing internally inconsistent Python longs.
+
- Issue #6990: Fix threading.local subclasses leaving old state around
after a reference cycle GC which could be recycled by new locals.