This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author steve.dower
Recipients eli.bendersky, lukasz.langa, scoder, steve.dower
Date 2019-05-07.13:36:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1557236210.72.0.578980303095.issue36831@roundup.psfhosted.org>
In-reply-to
Content
Here is a test case that fails on 3.8.0a4 and succeeds on 3.7.3:

    def test_find_attribute_with_empty_ns(self):
        NS = "http://effbot.org/ns"
        element = ET.fromstring(f"""<body xmlns="{NS}"><section id="1"/></body>""")
        self.assertIsNotNone(element.find("t:section[@id='1']", {"":NS, "t":NS}))
History
Date User Action Args
2019-05-07 13:36:50steve.dowersetrecipients: + steve.dower, scoder, eli.bendersky, lukasz.langa
2019-05-07 13:36:50steve.dowersetmessageid: <1557236210.72.0.578980303095.issue36831@roundup.psfhosted.org>
2019-05-07 13:36:50steve.dowerlinkissue36831 messages
2019-05-07 13:36:50steve.dowercreate