Shortcut method implemented only by responses whose content is text (subclasses of TextResponse).
(self, *a: Any, **kw: Any)
| 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 |
| 216 | is text (subclasses of TextResponse). |
| 217 | """ |
| 218 | raise NotSupported("Response content isn't text") |
| 219 | |
| 220 | def follow( |
| 221 | self, |
nothing calls this directly
no test coverage detected