/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/wsgiref/ |
handlers.py | 85 self.result = application(self.environ, self.start_response)
158 def start_response(self, status, headers,exc_info=None):
member in class:BaseHandler 159 """'start_response()' callable as specified by PEP 333"""
205 raise AssertionError("write() before start_response()")
303 self.result = self.error_output(self.environ, self.start_response)
307 def error_output(self, environ, start_response):
320 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/gdb/darwin-x86/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/gdb/linux-x86/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/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")
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_wsgiref.py | 45 def hello_app(environ,start_response):
46 start_response("200 OK", [
150 def bad_app(environ,start_response):
151 start_response("200 OK", ('Content-Type','text/plain'))
|
/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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'))
|