Shortcut method implemented only by responses whose content is text (subclasses of TextResponse).
(self, *a: Any, **kw: Any)
| 206 | raise NotSupported("Response content isn't text") |
| 207 | |
| 208 | def jmespath(self, *a: Any, **kw: Any) -> SelectorList: |
| 209 | """Shortcut method implemented only by responses whose content |
| 210 | is text (subclasses of TextResponse). |
| 211 | """ |
| 212 | raise NotSupported("Response content isn't text") |
| 213 | |
| 214 | def xpath(self, *a: Any, **kw: Any) -> SelectorList: |
| 215 | """Shortcut method implemented only by responses whose content |
nothing calls this directly
no test coverage detected