summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-06-15 21:48:19 (GMT)
committerRaymond Hettinger <python@rcn.com>2014-06-15 21:48:19 (GMT)
commit92a405534383927c48c8de2fc6bf06127ef2be78 (patch)
tree52f5b013c699b8c91f8a11ec0d96d98b33a00728 /Misc
parentef8abfc082daeb6e389dff8859640ed87da0cc12 (diff)
downloadcpython-92a405534383927c48c8de2fc6bf06127ef2be78.zip
cpython-92a405534383927c48c8de2fc6bf06127ef2be78.tar.gz
cpython-92a405534383927c48c8de2fc6bf06127ef2be78.tar.bz2
Issue #21774: Fix incorrect variable in xml.dom.minidom
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 66d9132..6d5c0a1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,10 @@ Library
run_forever() and run_until_complete() methods of asyncio.BaseEventLoop now
raise an exception if the event loop was closed.
+- Issue #21774: Fixed NameError for an incorrect variable reference in the
+ XML Minidom code for creating processing instructions.
+ (Found and fixed by Claudiu Popa.)
+
- Issue #21766: Prevent a security hole in CGIHTTPServer by URL unquoting paths
before checking for a CGI script at that path.