MCPcopy Create free account
hub / github.com/psf/cachecontrol / multiple_choices

Method multiple_choices

tests/conftest.py:92–95  ·  view source on GitHub ↗
(self, env, start_response)

Source from the content-addressed store, hash-verified

90 return [b"The permanent resource"]
91
92 def multiple_choices(self, env, start_response):
93 headers = [("Link", "/permalink")]
94 start_response("300 Multiple Choices", headers)
95 return [b"See: /permalink"]
96
97 def stream(self, env, start_response):
98 headers = [("Content-Type", "text/plain"), ("Cache-Control", "max-age=5000")]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected