( self, tag, att, match)
| 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) |
| 2378 | if ret.m_internal: |
| 2379 | return Xml( ret) |
| 2380 | |
| 2381 | def find_next( self, tag, att, match): |
| 2382 | ret = mupdf.fz_dom_find_next( self.this, tag, att, match) |
no test coverage detected