Lines Matching refs:resp
167 This reads the response as represented by ``str(resp)``; it
822 def merge_cookies(self, resp):
824 given `resp` object (which can be any WSGI application).
826 If the `resp` is a :class:`webob.Response` object, then the
830 return resp
831 if isinstance(resp, Response):
833 resp.headers.add('Set-Cookie', header)
834 return resp
842 return resp(environ, repl_start_response)