summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2012-03-05 21:02:28 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2012-03-05 21:02:28 (GMT)
commitb2c7cca0cfda2836ff4ef222bb23ff07a79600fd (patch)
tree26f88b2b663d68ecafedb70546f5f4fafd4bd396 /Misc
parentb2fcd3a989404ff4daa9310b8ed573a67317c243 (diff)
downloadcpython-b2c7cca0cfda2836ff4ef222bb23ff07a79600fd.zip
cpython-b2c7cca0cfda2836ff4ef222bb23ff07a79600fd.tar.gz
cpython-b2c7cca0cfda2836ff4ef222bb23ff07a79600fd.tar.bz2
Move entry to right section. Mention minidom.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 3 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ef3d8c8..132857f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #14168: Check for presence of Element._attrs in minidom before
+ accessing it.
+
- Issue #12328: Fix multiprocessing's use of overlapped I/O on Windows.
Also, add a multiprocessing.connection.wait(rlist, timeout=None) function
for polling multiple objects at once. Patch by sbt.
@@ -534,8 +537,6 @@ Core and Builtins
Library
-------
-- Issue #14168: Check for presence of _attrs before accessing it.
-
- Issue #14195: An issue that caused weakref.WeakSet instances to incorrectly
return True for a WeakSet instance 'a' in both 'a < a' and 'a > a' has been
fixed.