Home
last modified time | relevance | path

Searched refs:http_status_message (Results 1 – 3 of 3) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/webapp2/tests/
Dmisc_test.py85 self.assertEqual(webapp2.Response.http_status_message(404), 'Not Found')
86 self.assertEqual(webapp2.Response.http_status_message(500), 'Internal Server Error')
87 self.assertRaises(KeyError, webapp2.Response.http_status_message, 9999)
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/api/
Dwebapp2.rst110 http_status_message
/external/chromium-trace/trace-viewer/third_party/webapp2/
Dwebapp2.py405 message = message or Response.http_status_message(code)
480 def http_status_message(code): member in Response