MCPcopy Index your code
hub / github.com/python/cpython / values

Method values

Lib/email/message.py:484–493  ·  view source on GitHub ↗

Return a list of all the message's header values. These will be sorted in the order they appeared in the original message, or were added to the message, 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

482 return [k for k, v in self._headers]
483
484 def values(self):
485 """Return a list of all the message's header values.
486
487 These will be sorted in the order they appeared in the original
488 message, or were added to the message, and may contain duplicates.
489 Any fields deleted and re-inserted are always appended to the header
490 list.
491 """
492 return [self.policy.header_fetch_parse(k, v)
493 for k, v in self._headers]
494
495 def items(self):
496 """Get all the message's header fields and values.

Callers 15

test_replace_headerMethod · 0.95
closeMethod · 0.45
closeMethod · 0.45
_try_finishMethod · 0.45
__del__Method · 0.45
_rootsFunction · 0.45
_stop_accept_futuresMethod · 0.45
client.pyFile · 0.45
deepvaluesFunction · 0.45
_cookies_for_domainMethod · 0.45
_clear_cacheMethod · 0.45

Calls 1

header_fetch_parseMethod · 0.45

Tested by 2

test_replace_headerMethod · 0.76