MCPcopy
hub / github.com/scrapy/scrapy / values

Method values

scrapy/http/headers.py:106–110  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

104 return ((k, self.getlist(k)) for k in self.keys())
105
106 def values(self) -> list[bytes | None]: # type: ignore[override]
107 return [
108 self[k]
109 for k in self.keys() # pylint: disable=consider-using-dict-items
110 ]
111
112 def to_string(self) -> bytes:
113 return headers_dict_to_raw(self)

Callers 15

test_iterablesMethod · 0.95
__len__Method · 0.80
__len__Method · 0.80
_iter_command_classesFunction · 0.80
xmliterFunction · 0.80
iter_spider_classesFunction · 0.80
request_to_curlFunction · 0.80
format_live_refsFunction · 0.80
print_itemsMethod · 0.80
closeMethod · 0.80
_closeMethod · 0.80

Calls 1

keysMethod · 0.80