summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2019-04-14 08:09:09 (GMT)
committerGitHub <noreply@github.com>2019-04-14 08:09:09 (GMT)
commite9927e1820caea01e576141d9a623ea394d43dad (patch)
tree4f758ae025e9b5c1bb6198bb4524571da118489f /Misc
parentffca16e25a70fd44a87b13b379b5ec0c7a11e926 (diff)
downloadcpython-e9927e1820caea01e576141d9a623ea394d43dad.zip
cpython-e9927e1820caea01e576141d9a623ea394d43dad.tar.gz
cpython-e9927e1820caea01e576141d9a623ea394d43dad.tar.bz2
bpo-30485: support a default prefix mapping in ElementPath by passing None as prefix (#1823)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-04-13-23-42-33.bpo-30485.JHhjJS.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-04-13-23-42-33.bpo-30485.JHhjJS.rst b/Misc/NEWS.d/next/Library/2019-04-13-23-42-33.bpo-30485.JHhjJS.rst
new file mode 100644
index 0000000..6c82efd
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-04-13-23-42-33.bpo-30485.JHhjJS.rst
@@ -0,0 +1,3 @@
+Path expressions in xml.etree.ElementTree can now avoid explicit namespace
+prefixes for tags (or the "{namespace}tag" notation) by passing a default
+namespace with a 'None' prefix.