# expat2domlette.c seems to get confused about xmlns attributes, # like which part is the localName and which part is the prefix. from Xml.Xslt import test_harness source_1 = """\ """ sheet_1 = """\ """ expected_1 = """ """ def Test(tester): source = test_harness.FileInfo(string=source_1) sheet = test_harness.FileInfo(string=sheet_1) test_harness.XsltTest(tester, source, [sheet], expected_1, title='namespace copy-through') return