summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-08-11 09:07:59 (GMT)
committerGeorg Brandl <georg@python.org>2008-08-11 09:07:59 (GMT)
commit1e13ea94a3da9fa2b60c24ff201c5ae69791572d (patch)
treeb5e06ec816e047ea89c5dcd6ad5575d16c2141d0 /Misc/NEWS
parent14646337bff978f5eba7f2add21ffbe89e894c7c (diff)
downloadcpython-1e13ea94a3da9fa2b60c24ff201c5ae69791572d.zip
cpython-1e13ea94a3da9fa2b60c24ff201c5ae69791572d.tar.gz
cpython-1e13ea94a3da9fa2b60c24ff201c5ae69791572d.tar.bz2
- Issue #3537: Fix an assertion failure when an empty but presized dict
object was stored in the freelist.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a197efc..1c34654 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 beta 3?
Core and Builtins
-----------------
+- Issue #3537: Fix an assertion failure when an empty but presized dict
+ object was stored in the freelist.
+
- Issue #1481296: Make long(float('nan')) and int(float('nan')) raise
ValueError consistently across platforms.