Home
last modified time | relevance | path

Searched refs:BaseCGIHandler (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Lib/wsgiref/
Dhandlers.py484 class BaseCGIHandler(SimpleHandler): class
508 class CGIHandler(BaseCGIHandler):
532 BaseCGIHandler.__init__(
538 class IISCGIHandler(BaseCGIHandler):
568 BaseCGIHandler.__init__(
/third_party/python/Lib/test/
Dtest_wsgiref.py9 from wsgiref.handlers import BaseHandler, BaseCGIHandler, SimpleHandler
530 class ErrorHandler(BaseCGIHandler):
540 BaseCGIHandler.__init__(
611 h = BaseCGIHandler(None,None,None,{})
/third_party/python/Doc/library/
Dwsgiref.rst462 This class is a subclass of :class:`BaseCGIHandler` that sets ``wsgi.run_once``
494 .. class:: BaseCGIHandler(stdin, stdout, stderr, environ, multithread=True, multiprocess=False)
511 Similar to :class:`BaseCGIHandler`, but designed for use with HTTP origin
513 want to subclass this instead of :class:`BaseCGIHandler`.
621 as :class:`BaseCGIHandler` and :class:`CGIHandler`) that are not HTTP origin
731 :class:`BaseCGIHandler` and :class:`CGIHandler`.