• Home
  • Raw
  • Download

Lines Matching refs:str

12 str = doc.serialize()  variable
13 if str != """<?xml version="1.0"?>
18 str = doc.serialize("iso-8859-1") variable
19 if str != """<?xml version="1.0" encoding="iso-8859-1"?>
24 str = doc.serialize(format=1) variable
25 if str != """<?xml version="1.0"?>
32 str = doc.serialize("iso-8859-1", 1) variable
33 if str != """<?xml version="1.0" encoding="iso-8859-1"?>
45 str = root.serialize() variable
46 if str != """<root><foo>hello</foo></root>""":
49 str = root.serialize("iso-8859-1") variable
50 if str != """<root><foo>hello</foo></root>""":
53 str = root.serialize(format=1) variable
54 if str != """<root>
59 str = root.serialize("iso-8859-1", 1) variable
60 if str != """<root>
71 str = doc.serialize() variable
72 if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/RE…
77 str = doc.serialize("ISO-8859-1") variable
78 if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/RE…
83 str = doc.serialize(format=1) variable
84 if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/RE…
95 str = doc.serialize("iso-8859-1", 1) variable
96 if str != """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/RE…
113 str = root.serialize() variable
114 if str != """<html><head><title>Hello</title></head><body><p>hello</p></body></html>""":
117 str = root.serialize("ISO-8859-1") variable
118 if str != """<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><t…
121 str = root.serialize(format=1) variable
122 if str != """<html>
131 str = root.serialize("iso-8859-1", 1) variable
132 if str != """<html>