MCPcopy Index your code
hub / github.com/RustPython/RustPython / items

Method items

Lib/wsgiref/headers.py:123–131  ·  view source on GitHub ↗

Get all the header fields and values. These will be sorted in the order they were in the original header list, or were added to this instance, and may contain duplicates. Any fields deleted and re-inserted are always appended to the header list.

(self)

Source from the content-addressed store, hash-verified

121 return [v for k, v in self._headers]
122
123 def items(self):
124 """Get all the header fields and values.
125
126 These will be sorted in the order they were in the original header
127 list, or were added to this instance, and may contain duplicates.
128 Any fields deleted and re-inserted are always appended to the header
129 list.
130 """
131 return self._headers[:]
132
133 def __repr__(self):
134 return "%s(%r)" % (self.__class__.__name__, self._headers)

Callers 4

add_headerMethod · 0.45
get_environMethod · 0.45
demo_appFunction · 0.45
read_environFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected