(self, selector, prefix='descendant-or-self::')
| 252 | list.__init__(self, elements) |
| 253 | |
| 254 | def _css_to_xpath(self, selector, prefix='descendant-or-self::'): |
| 255 | selector = selector.replace('[@', '[') |
| 256 | return self._translator.css_to_xpath(selector, prefix) |
| 257 | |
| 258 | def _copy(self, *args, **kwargs): |
| 259 | kwargs.setdefault('namespaces', self.namespaces) |
no outgoing calls
no test coverage detected