summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-11-17 16:22:11 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2008-11-17 16:22:11 (GMT)
commit276c3718e3aa3954026297a9effcd952ca695aa7 (patch)
treede1b6ffb02ec9d559ee10b9a5d380f9721d9ca34 /Misc
parent23b4bfb91f3389a085a4fffcf4bb25b899046989 (diff)
downloadcpython-276c3718e3aa3954026297a9effcd952ca695aa7.zip
cpython-276c3718e3aa3954026297a9effcd952ca695aa7.tar.gz
cpython-276c3718e3aa3954026297a9effcd952ca695aa7.tar.bz2
Issue #3327: Don't overallocate in the modules_by_index list.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 874f27b..acedeb1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,8 @@ What's New in Python 3.0 release candiate 3?
Core and Builtins
-----------------
+- Issue #3327: Don't overallocate in the modules_by_index list.
+
- Issue #1721812: Binary set operations and copy() returned the input type
instead of the appropriate base type. This was incorrect because set
subclasses would be created without their __init__() method being called.