Searched refs:BaseCGIHandler (Results 1 - 4 of 4) sorted by relevance

/external/python/cpython3/Lib/wsgiref/
H A Dhandlers.py9 'BaseHandler', 'SimpleHandler', 'BaseCGIHandler', 'CGIHandler',
470 class BaseCGIHandler(SimpleHandler): class in inherits:SimpleHandler
476 handler = BaseCGIHandler(inp,out,err,env)
494 class CGIHandler(BaseCGIHandler):
502 The difference between this class and BaseCGIHandler is that it always
507 If you need to override any of these parameters, use BaseCGIHandler
518 BaseCGIHandler.__init__(
524 class IISCGIHandler(BaseCGIHandler):
554 BaseCGIHandler.__init__(
/external/python/cpython2/Lib/wsgiref/
H A Dhandlers.py9 __all__ = ['BaseHandler', 'SimpleHandler', 'BaseCGIHandler', 'CGIHandler']
399 class BaseCGIHandler(SimpleHandler): class in inherits:SimpleHandler
405 handler = BaseCGIHandler(inp,out,err,env)
423 class CGIHandler(BaseCGIHandler):
431 The difference between this class and BaseCGIHandler is that it always
436 If you need to override any of these parameters, use BaseCGIHandler
447 BaseCGIHandler.__init__(
/external/python/cpython2/Lib/test/
H A Dtest_wsgiref.py4 from wsgiref.handlers import BaseHandler, BaseCGIHandler namespace
357 class ErrorHandler(BaseCGIHandler):
367 BaseCGIHandler.__init__(
408 h = BaseCGIHandler(None,None,None,{})
/external/python/cpython3/Lib/test/
H A Dtest_wsgiref.py7 from wsgiref.handlers import BaseHandler, BaseCGIHandler, SimpleHandler namespace
520 class ErrorHandler(BaseCGIHandler):
530 BaseCGIHandler.__init__(
571 h = BaseCGIHandler(None,None,None,{})

Completed in 65 milliseconds