Searched refs:WSGIResponse (Results 1 – 6 of 6) sorted by relevance
6 from paste.wsgiwrappers import WSGIRequest, WSGIResponse101 response = WSGIResponse(mimetype='text/html; charset=UTF-8')111 WSGIResponse.defaults._push_object(dict(content_type='text/html',114 response = WSGIResponse()122 WSGIResponse.defaults._pop_object()126 WSGIResponse.defaults._push_object(dict(content_type='text/html',129 response = WSGIResponse(u'test')135 WSGIResponse.defaults._pop_object()137 WSGIResponse.defaults._push_object(dict(content_type='text/html',140 response = WSGIResponse(u'test')[all …]
10 .. autoclass:: WSGIResponse
252 from paste.wsgiwrappers import WSGIResponse254 resp = WSGIResponse(code=self.code, content=content)
37 WSGIResponse.defaults._push_object(obj)295 class WSGIResponse(object): class
237 :meth:`paste.wsgiwrappers.WSGIResponse.delete_cookie`.298 * Fix assigning to ``WSGIResponse.charset`` breaking the content-type.327 * ``paste.wsgiwrappers.WSGIResponse`` now has a ``.content_type``403 method that returns a ``WSGIResponse`` object.480 dictionary for ``paste.wsgiwrappers.WSGIResponse.defaults``.627 * Fixed ``wsgiwrappers.WSGIResponse.delete_cookie``. It also now takes630 * ``wsgiwrappers.WSGIResponse`` now handles generator/iterator content634 * Fixed ``wsgiwrappers.WSGIResponse`` mishandling multiple headers of
13 ``paste.wsgiwrappers.WSGIRequest`` and ``WSGIResponse``