MCPcopy Create free account
hub / github.com/gawel/pyquery / extend

Method extend

pyquery/pyquery.py:286–290  ·  view source on GitHub ↗

Extend with another PyQuery object

(self, other)

Source from the content-addressed store, hash-verified

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:

Callers 9

extract_text_arrayFunction · 0.80
__init__Method · 0.80
_filter_onlyMethod · 0.80
contentsMethod · 0.80
findMethod · 0.80
mapMethod · 0.80
htmlMethod · 0.80
appendMethod · 0.80
serialize_pairsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected