HomeSort by relevance Sort by last modified time
    Searched refs:start_response (Results 1 - 9 of 9) 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())
simple_server.py 128 def demo_app(environ,start_response):
136 start_response("200 OK", [('Content-Type','text/plain')])
validate.py 10 * Signature of the application and start_response (including that
73 * That the exc_info argument to start_response is a tuple or None.
103 - That the iterator is not iterated over until start_response has
146 environ, start_response = args
151 # calling start_response:
171 return WriteWrapper(start_response(*args))
274 "The application returns and we started iterating over its body, but start_response has not yet been called")
  /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())
simple_server.py 128 def demo_app(environ,start_response):
136 start_response("200 OK", [('Content-Type','text/plain')])
validate.py 10 * Signature of the application and start_response (including that
73 * That the exc_info argument to start_response is a tuple or None.
103 - That the iterator is not iterated over until start_response has
146 environ, start_response = args
151 # calling start_response:
171 return WriteWrapper(start_response(*args))
274 "The application returns and we started iterating over its body, but start_response has not yet been called")
  /external/chromium_org/tools/oopif/
iframe_server.py 214 def application(environ, start_response):
215 start_response('200 OK', [('Content-Type', 'text/html')])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_wsgiref.py 42 def hello_app(environ,start_response):
43 start_response("200 OK", [
122 def bad_app(environ,start_response):
123 start_response("200 OK", ('Content-Type','text/plain'))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_wsgiref.py 42 def hello_app(environ,start_response):
43 start_response("200 OK", [
122 def bad_app(environ,start_response):
123 start_response("200 OK", ('Content-Type','text/plain'))

Completed in 191 milliseconds