(self, content)
| 206 | self._write('</%s>' % self._qname(name)) |
| 207 | |
| 208 | def characters(self, content): |
| 209 | if content: |
| 210 | self._finish_pending_start_element() |
| 211 | if not isinstance(content, str): |
| 212 | content = str(content, self._encoding) |
| 213 | self._write(escape(content)) |
| 214 | |
| 215 | def ignorableWhitespace(self, content): |
| 216 | if content: |