Print a list of the node tree below self.
(self)
| 2368 | return Xml( mupdf.fz_dom_create_text_node( self.this, text)) |
| 2369 | |
| 2370 | def debug(self): |
| 2371 | """Print a list of the node tree below self.""" |
| 2372 | items = self._get_node_tree() |
| 2373 | for item in items: |
| 2374 | message(" " * item[0] + item[1].replace("\n", "\\n")) |
| 2375 | |
| 2376 | def find( self, tag, att, match): |
| 2377 | ret = mupdf.fz_dom_find( self.this, tag, att, match) |
nothing calls this directly
no test coverage detected