Home | History | Annotate | Download | only in test

Lines Matching refs:handler_class

23     def __init__(self, server_address, handler_class, context):
24 _HTTPServer.__init__(self, server_address, handler_class)
122 def __init__(self, context, host=HOST, handler_class=None):
125 handler_class or RootedHTTPRequestHandler,
151 host=HOST, handler_class=None):
156 server = HTTPSServerThread(context, host, handler_class)
193 handler_class = StatsRequestHandler
195 handler_class = RootedHTTPRequestHandler
196 handler_class.root = os.getcwd()
206 server = HTTPSServer(("", args.port), handler_class, context)