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

Method raw_items

Lib/email/message.py:530–535  ·  view source on GitHub ↗

Return the (name, value) header pairs without modification. This is an "internal" API, intended only for use by a generator.

(self)

Source from the content-addressed store, hash-verified

528 self._headers.append((name, value))
529
530 def raw_items(self):
531 """Return the (name, value) header pairs without modification.
532
533 This is an "internal" API, intended only for use by a generator.
534 """
535 return iter(self._headers.copy())
536
537 #
538 # Additional useful stuff

Callers 2

_write_headersMethod · 0.80
_write_headersMethod · 0.80

Calls 1

copyMethod · 0.45

Tested by

no test coverage detected