(self, prefix, uri)
| 1914 | self._write(_escape_cdata_c14n(data)) |
| 1915 | |
| 1916 | def start_ns(self, prefix, uri): |
| 1917 | if self._ignored_depth: |
| 1918 | return |
| 1919 | # we may have to resolve qnames in text content |
| 1920 | if self._data: |
| 1921 | self._flush() |
| 1922 | self._ns_stack[-1].append((uri, prefix)) |
| 1923 | |
| 1924 | def start(self, tag, attrs): |
| 1925 | if self._exclude_tags is not None and ( |