HomeSort by relevance Sort by last modified time
    Searched defs:start_response (Results 1 - 2 of 2) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
handlers.py 85 self.result = application(self.environ, self.start_response)
160 def start_response(self, status, headers,exc_info=None): member in class:BaseHandler
161 """'start_response()' callable as specified by PEP 333"""
207 raise AssertionError("write() before start_response()")
305 self.result = self.error_output(self.environ, self.start_response)
309 def error_output(self, environ, start_response):
322 start_response(self.error_status,self.error_headers[:],sys.exc_info())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
handlers.py 85 self.result = application(self.environ, self.start_response)
160 def start_response(self, status, headers,exc_info=None): member in class:BaseHandler
161 """'start_response()' callable as specified by PEP 333"""
207 raise AssertionError("write() before start_response()")
305 self.result = self.error_output(self.environ, self.start_response)
309 def error_output(self, environ, start_response):
322 start_response(self.error_status,self.error_headers[:],sys.exc_info())

Completed in 230 milliseconds