Lines Matching refs:tail
88 # <li>an optional <i>tail</i> string.</li>
172 # <tag attrib>text<child/>...</tag>tail
203 tail = None # text after end tag, if any
236 elem.tail = self.tail
406 # all attributes, and sets the <b>text</b> and <b>tail</b> attributes
412 self.text = self.tail = None
507 if e.tail:
508 yield e.tail
943 if elem.tail:
944 write(_escape_cdata(elem.tail, encoding))
1001 if elem.tail:
1002 write(_escape_cdata(elem.tail, encoding))
1007 if elem.tail:
1008 write(elem.tail.encode(encoding))
1165 tail = elem.getroot().tail
1166 if not tail or tail[-1] != "\n":
1404 assert self._last.tail is None, "internal error (tail)"
1405 self._last.tail = text