(self, text = None, allow_picture = False)
| 113 | self.raw += tmp |
| 114 | |
| 115 | def is_html(self, text = None, allow_picture = False): |
| 116 | if text: |
| 117 | self.reset() |
| 118 | self.reset_safe() |
| 119 | self.allow_picture = allow_picture |
| 120 | self.feed(text) |
| 121 | self.close() |
| 122 | return self.has_html |
nothing calls this directly
no test coverage detected