(self, env, start_response)
| 71 | return [pformat(env).encode("utf8")] |
| 72 | |
| 73 | def cache_60(self, env, start_response): |
| 74 | headers = [("Cache-Control", "public, max-age=60")] |
| 75 | start_response("200 OK", headers) |
| 76 | return [pformat(env).encode("utf8")] |
| 77 | |
| 78 | def no_cache(self, env, start_response): |
| 79 | headers = [("Cache-Control", "no-cache")] |