Searched refs:http_status_message (Results 1 – 3 of 3) sorted by relevance
85 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)
110 http_status_message
405 message = message or Response.http_status_message(code)480 def http_status_message(code): member in Response