Home
last modified time | relevance | path

Searched refs:WSGIResponse (Results 1 – 6 of 6) sorted by relevance

/external/chromium-trace/catapult/third_party/Paste/tests/
Dtest_wsgiwrappers.py6 from paste.wsgiwrappers import WSGIRequest, WSGIResponse
101 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 …]
/external/chromium-trace/catapult/third_party/Paste/docs/modules/
Dwsgiwrappers.txt10 .. autoclass:: WSGIResponse
/external/chromium-trace/catapult/third_party/Paste/paste/
Dhttpexceptions.py252 from paste.wsgiwrappers import WSGIResponse
254 resp = WSGIResponse(code=self.code, content=content)
Dwsgiwrappers.py37 WSGIResponse.defaults._push_object(obj)
295 class WSGIResponse(object): class
/external/chromium-trace/catapult/third_party/Paste/docs/
Dnews.txt237 :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 takes
630 * ``wsgiwrappers.WSGIResponse`` now handles generator/iterator content
634 * Fixed ``wsgiwrappers.WSGIResponse`` mishandling multiple headers of
/external/chromium-trace/catapult/third_party/WebOb/docs/
Ddifferences.txt13 ``paste.wsgiwrappers.WSGIRequest`` and ``WSGIResponse``