summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_xml_etree.py
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2019-04-18 17:05:03 (GMT)
committerGitHub <noreply@github.com>2019-04-18 17:05:03 (GMT)
commite8113f51a8bdf33188ee30a1c038a298329e7bfa (patch)
tree9352ef363c501a34f32ed4e8e43d3cf3b23b0def /Lib/test/test_xml_etree.py
parent7e954e7de4f3777b5ce239640bd2b76aced09561 (diff)
downloadcpython-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 'Lib/test/test_xml_etree.py')
-rw-r--r--Lib/test/test_xml_etree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_xml_etree.py b/Lib/test/test_xml_etree.py
index f5b118b..14ce32a 100644
--- a/Lib/test/test_xml_etree.py
+++ b/Lib/test/test_xml_etree.py
@@ -2463,7 +2463,7 @@ class ElementFindTest(unittest.TestCase):
nsmap = {'xx': 'Y'}
self.assertEqual(len(root.findall(".//xx:b", namespaces=nsmap)), 1)
self.assertEqual(len(root.findall(".//b", namespaces=nsmap)), 2)
- nsmap = {'xx': 'X', None: 'Y'}
+ nsmap = {'xx': 'X', '': 'Y'}
self.assertEqual(len(root.findall(".//xx:b", namespaces=nsmap)), 2)
self.assertEqual(len(root.findall(".//b", namespaces=nsmap)), 1)