diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2019-04-18 17:05:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-18 17:05:03 (GMT) |
commit | e8113f51a8bdf33188ee30a1c038a298329e7bfa (patch) | |
tree | 9352ef363c501a34f32ed4e8e43d3cf3b23b0def /Misc/NEWS.d | |
parent | 7e954e7de4f3777b5ce239640bd2b76aced09561 (diff) | |
download | cpython-e8113f51a8bdf33188ee30a1c038a298329e7bfa.zip cpython-e8113f51a8bdf33188ee30a1c038a298329e7bfa.tar.gz cpython-e8113f51a8bdf33188ee30a1c038a298329e7bfa.tar.bz2 |
bpo-30485: Change the prefix for defining the default namespace in ElementPath from None to '' since there is existing code that uses that and it's more convenient to have an all-string-keys dict (e.g. when sorting items etc.). (#12860)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-04-13-23-42-33.bpo-30485.JHhjJS.rst | 2 |
1 files changed, 1 insertions, 1 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 index 6c82efd..900edf8 100644 --- 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 @@ -1,3 +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. +namespace with an empty string prefix. |