summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsblondon <sblondon@users.noreply.github.com>2018-02-10 22:39:43 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2018-02-10 22:39:43 (GMT)
commit8d1f2f40389c476d9240ec87a33da0373597c6af (patch)
tree03cb96a194afb34139989dfd330588c0b9cdce39
parent8ff53564730f7ba503f5ad94418c309c48e8516d (diff)
downloadcpython-8d1f2f40389c476d9240ec87a33da0373597c6af.zip
cpython-8d1f2f40389c476d9240ec87a33da0373597c6af.tar.gz
cpython-8d1f2f40389c476d9240ec87a33da0373597c6af.tar.bz2
bpo-32800: Update link to w3c doc for xml default namespaces (GH-5609)
The new link is given in a red box on the old page.
-rw-r--r--Doc/library/xml.etree.elementtree.rst2
-rw-r--r--Misc/NEWS.d/next/Documentation/2018-02-10-15-16-04.bpo-32800.FyrqCk.rst1
2 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/xml.etree.elementtree.rst b/Doc/library/xml.etree.elementtree.rst
index 6180859..6298f13 100644
--- a/Doc/library/xml.etree.elementtree.rst
+++ b/Doc/library/xml.etree.elementtree.rst
@@ -297,7 +297,7 @@ If the XML input has `namespaces
with prefixes in the form ``prefix:sometag`` get expanded to
``{uri}sometag`` where the *prefix* is replaced by the full *URI*.
Also, if there is a `default namespace
-<https://www.w3.org/TR/2006/REC-xml-names-20060816/#defaulting>`__,
+<https://www.w3.org/TR/xml-names/#defaulting>`__,
that full URI gets prepended to all of the non-prefixed tags.
Here is an XML example that incorporates two namespaces, one with the
diff --git a/Misc/NEWS.d/next/Documentation/2018-02-10-15-16-04.bpo-32800.FyrqCk.rst b/Misc/NEWS.d/next/Documentation/2018-02-10-15-16-04.bpo-32800.FyrqCk.rst
new file mode 100644
index 0000000..eac1107
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2018-02-10-15-16-04.bpo-32800.FyrqCk.rst
@@ -0,0 +1 @@
+Update link to w3c doc for xml default namespaces.