Searched refs:handler_class (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | ssl_servers.py | 23 def __init__(self, server_address, handler_class, context): argument 24 _HTTPServer.__init__(self, server_address, handler_class) 122 def __init__(self, context, host=HOST, handler_class=None): argument 125 handler_class or RootedHTTPRequestHandler, 151 host=HOST, handler_class=None): argument 156 server = HTTPSServerThread(context, host, handler_class) 193 handler_class = StatsRequestHandler variable 195 handler_class = RootedHTTPRequestHandler variable 196 handler_class.root = os.getcwd() 206 server = HTTPSServer(("", args.port), handler_class, context)
|
D | test_urllib2.py | 1304 def opener_has_handler(self, opener, handler_class): argument 1306 if h.__class__ == handler_class:
|
D | test_urllib2_localnet.py | 486 server = make_https_server(self, handler_class=handler, **kwargs)
|
/external/python/cpython2/Lib/wsgiref/ |
D | simple_server.py | 148 host, port, app, server_class=WSGIServer, handler_class=WSGIRequestHandler argument 151 server = server_class((host, port), handler_class)
|
/external/python/cpython2/Doc/library/ |
D | basehttpserver.rst | 36 handler_class=BaseHTTPServer.BaseHTTPRequestHandler): 38 httpd = server_class(server_address, handler_class) 285 handler_class=BaseHTTPServer.BaseHTTPRequestHandler): 292 httpd = server_class(server_address, handler_class)
|
D | wsgiref.rst | 274 .. function:: make_server(host, port, app, server_class=WSGIServer, handler_class=WSGIRequestHandle… 278 will process requests using the specified *handler_class*. *app* must be a WSGI 341 however, subclass this class and supply it as a *handler_class* to the
|
/external/autotest/client/cros/faft/ |
D | rpc_functions.py | 49 def __init__(self, handler_class, *args, **kargs): argument 50 self._handler_class = handler_class
|