(self, env, start_response)
| 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")] |
nothing calls this directly
no outgoing calls
no test coverage detected