(self, env, start_response)
| 59 | return [pformat(env).encode("utf8")] |
| 60 | |
| 61 | def conditional_get(self, env, start_response): |
| 62 | return start_response("304 Not Modified", []) |
| 63 | |
| 64 | def etag(self, env, start_response): |
| 65 | headers = [("Etag", self.etag_string)] |
nothing calls this directly
no outgoing calls
no test coverage detected