Extend with another PyQuery object
(self, other)
| 284 | return self._copy(self[:] + other[:]) |
| 285 | |
| 286 | def extend(self, other): |
| 287 | """Extend with another PyQuery object""" |
| 288 | assert isinstance(other, self.__class__) |
| 289 | self._extend(other[:]) |
| 290 | return self |
| 291 | |
| 292 | def items(self, selector=None): |
| 293 | """Iter over elements. Return PyQuery objects: |
no outgoing calls
no test coverage detected