MCPcopy
hub / github.com/scrapy/scrapy / extend

Method extend

scrapy/utils/python.py:308–309  ·  view source on GitHub ↗
(self, *iterables: Iterable[_T])

Source from the content-addressed store, hash-verified

306 self.data: Iterator[_T] = chain.from_iterable(args)
307
308 def extend(self, *iterables: Iterable[_T]) -> None:
309 self.data = chain(self.data, chain.from_iterable(iterables))
310
311 def __iter__(self) -> Iterator[_T]:
312 return self

Callers 14

conftest.pyFile · 0.45
sendMethod · 0.45
walk_callableFunction · 0.45
updateMethod · 0.45
appendlistMethod · 0.45
add_cookie_headerMethod · 0.45
_get_inputsFunction · 0.45
extract_linksMethod · 0.45
_evaluate_iterableMethod · 0.45
close_spiderMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected