summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-10-27 18:33:30 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-10-27 18:33:30 (GMT)
commit6b03ee603315ac9e69332c8f2d064de0a98c3f15 (patch)
tree062ff0d1fa4816dd12137b65901f87a9f22c538d /Misc
parentc1a68363057b7b939fccbe35ab5f9d288e0ef6c1 (diff)
downloadcpython-6b03ee603315ac9e69332c8f2d064de0a98c3f15.zip
cpython-6b03ee603315ac9e69332c8f2d064de0a98c3f15.tar.gz
cpython-6b03ee603315ac9e69332c8f2d064de0a98c3f15.tar.bz2
Issue #5027: The standard `xml` namespace is now understood by
xml.sax.saxutils.XMLGenerator as being bound to http://www.w3.org/XML/1998/namespace. Patch by Troy J. Farrell.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index f5c6725..d9e3f33 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -257,6 +257,7 @@ Greg Ewing
Martijn Faassen
Andreas Faerber
Bill Fancher
+Troy J. Farrell
Mark Favas
Niels Ferguson
Sebastian Fernandez
diff --git a/Misc/NEWS b/Misc/NEWS
index d860a7a..3f8d115 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -51,6 +51,10 @@ Core and Builtins
Library
-------
+- Issue #5027: The standard ``xml`` namespace is now understood by
+ xml.sax.saxutils.XMLGenerator as being bound to
+ http://www.w3.org/XML/1998/namespace. Patch by Troy J. Farrell.
+
- Issue #5975: Add csv.unix_dialect class.
- Issue #7761: telnetlib.interact failures on Windows fixed.