MCPcopy Index your code
hub / github.com/cherrypy/cherrypy / values

Method values

cherrypy/lib/httputil.py:437–439  ·  view source on GitHub ↗

Return a sorted list of HeaderElement.value for the given header.

(self, key)

Source from the content-addressed store, hash-verified

435 return header_elements(self.transform_key(key), self.get(key))
436
437 def values(self, key):
438 """Return a sorted list of HeaderElement.value for the given header."""
439 return [e.value for e in self.elements(key)]
440
441 def output(self):
442 """Transform self into a list of (name, value) tuples."""

Callers

nothing calls this directly

Calls 1

elementsMethod · 0.95

Tested by

no test coverage detected