Home | History | Annotate | Download | only in tests

Lines Matching defs:pi

11 pi = libxml2.newPI("test", "PI content")
12 doc.addChild(pi)
28 pi = comment.next
29 if pi.type != "pi" or pi.name != "test" or pi.content != "PI content":
30 print("error rereading PI")
32 root = pi.next