Merged revisions 84495-84496 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84495 | antoine.pitrou | 2010-09-04 19:40:21 +0200 (sam., 04 sept. 2010) | 4 lines
Issue #1100562: Fix deep-copying of objects derived from the list and dict types.
Patch by Michele Orrù and Björn Lindqvist.
........
r84496 | antoine.pitrou | 2010-09-04 19:40:51 +0200 (sam., 04 sept. 2010) | 3 lines
Fix Björn's name in ACKS.
........
diff --git a/Misc/ACKS b/Misc/ACKS
index 293188c..1fa27d4 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -472,7 +472,7 @@
Shawn Ligocki
Martin Ligr
Christopher Lindblad
-Bjorn Lindqvist
+Björn Lindqvist
Per Lindqvist
Eric Lindvall
Gregor Lingl
diff --git a/Misc/NEWS b/Misc/NEWS
index 914c5f1..8ac6168 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,9 @@
Library
-------
+- Issue #1100562: Fix deep-copying of objects derived from the list and
+ dict types. Patch by Michele Orrù and Björn Lindqvist.
+
- Issue #7005: Fixed output of None values for RawConfigParser.write and
ConfigParser.write.