Searched refs:WSGIServer (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Lib/wsgiref/ |
D | simple_server.py | 42 class WSGIServer(HTTPServer): class 151 host, port, app, server_class=WSGIServer, handler_class=WSGIRequestHandler
|
/third_party/python/Lib/test/test_asyncio/ |
D | utils.py | 23 from wsgiref.simple_server import WSGIRequestHandler, WSGIServer 141 class SilentWSGIServer(WSGIServer): 222 class UnixWSGIServer(UnixHTTPServer, WSGIServer):
|
/third_party/python/Doc/library/ |
D | wsgiref.rst | 279 .. function:: make_server(host, port, app, server_class=WSGIServer, handler_class=WSGIRequestHandle… 309 .. class:: WSGIServer(server_address, RequestHandlerClass) 311 Create a :class:`WSGIServer` instance. *server_address* should be a 319 :class:`WSGIServer` is a subclass of :class:`http.server.HTTPServer`, so all 321 available. :class:`WSGIServer` also provides these WSGI-specific methods: 324 .. method:: WSGIServer.set_app(application) 330 .. method:: WSGIServer.get_app() 342 (a ``(host,port)`` tuple), and *server* (:class:`WSGIServer` instance). 345 automatically created as needed by :class:`WSGIServer` objects. You can, 354 implementation copies the contents of the :class:`WSGIServer` object's
|
/third_party/python/Lib/test/ |
D | test_wsgiref.py | 12 from wsgiref.simple_server import WSGIServer, WSGIRequestHandler 27 class MockServer(WSGIServer):
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0b1.rst | 1212 ``wsgiref.simple_server.WSGIServer`` is single-threaded.
|