summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-26 21:49:42 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-26 21:49:42 (GMT)
commitc472246d81f2e9e7842c0d6e663ea01429e2efa9 (patch)
treed3443179fa9db07cfff1c5de997e450493e008cd /Misc
parent747d48cf27e1843f7d1046b4e8127833a40cf9b3 (diff)
downloadcpython-c472246d81f2e9e7842c0d6e663ea01429e2efa9.zip
cpython-c472246d81f2e9e7842c0d6e663ea01429e2efa9.tar.gz
cpython-c472246d81f2e9e7842c0d6e663ea01429e2efa9.tar.bz2
Issue #10131: Fixed deep copying of minidom documents. Based on patch
by Marian Ganisin.
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 9dc0aae..95f2626 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,9 @@ Core and Builtins
Library
-------
+- Issue #10131: Fixed deep copying of minidom documents. Based on patch
+ by Marian Ganisin.
+
- Issue #25725: Fixed a reference leak in pickle.loads() when unpickling
invalid data including tuple instructions.