(self,content)
| 62 | rsp.encoding='utf-8' |
| 63 | return rsp |
| 64 | def html(self,content): |
| 65 | return etree.HTML(content) |
| 66 | def xpText(self,root,expr): |
| 67 | ele = root.xpath(expr) |
| 68 | if len(ele) == 0: |
nothing calls this directly
no outgoing calls
no test coverage detected