Home
last modified time | relevance | path

Searched refs:wsgi_file_wrapper (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/wsgiref/
Dhandlers.py61 wsgi_file_wrapper = FileWrapper # set to None to disable variable in BaseHandler
110 if self.wsgi_file_wrapper is not None:
111 env['wsgi.file_wrapper'] = self.wsgi_file_wrapper
276 wrapper = self.wsgi_file_wrapper
/external/python/cpython3/Lib/wsgiref/
Dhandlers.py113 wsgi_file_wrapper = FileWrapper # set to None to disable variable in BaseHandler
162 if self.wsgi_file_wrapper is not None:
163 env['wsgi.file_wrapper'] = self.wsgi_file_wrapper
338 wrapper = self.wsgi_file_wrapper
/external/python/cpython2/Lib/test/
Dtest_wsgiref.py386 if attr=='file_wrapper' and handler.wsgi_file_wrapper is None:
/external/python/cpython2/Doc/library/
Dwsgiref.rst604 :attr:`wsgi_file_wrapper` attribute. It also inserts a ``SERVER_SOFTWARE`` key
668 .. attribute:: BaseHandler.wsgi_file_wrapper
678 specified by the :attr:`wsgi_file_wrapper` attribute. It should return a true
/external/python/cpython3/Doc/library/
Dwsgiref.rst639 :attr:`wsgi_file_wrapper` attribute. It also inserts a ``SERVER_SOFTWARE`` key
703 .. attribute:: BaseHandler.wsgi_file_wrapper
713 specified by the :attr:`wsgi_file_wrapper` attribute. It should return a true
/external/python/cpython3/Lib/test/
Dtest_wsgiref.py549 if attr=='file_wrapper' and handler.wsgi_file_wrapper is None: