#Steve Brown on 28 July 2000 posted what he felt was a bug in Xalan. David Carlisle later confirmed it was a bug pointing out the correct output from XT from Xml.Xslt import test_harness sheet_1 = """ ** position = last = """ source_1 = """ """ expected_1 = """ *1* position = 1 last = 4 *5* position = 2 last = 4 *6* position = 3 last = 4 *7* position = 4 last = 4""" 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) return