Home
last modified time | relevance | path

Searched refs:WSGIServer (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/wsgiref/
Dsimple_server.py42 class WSGIServer(HTTPServer): class
151 host, port, app, server_class=WSGIServer, handler_class=WSGIRequestHandler
/third_party/python/Lib/test/test_asyncio/
Dutils.py23 from wsgiref.simple_server import WSGIRequestHandler, WSGIServer
141 class SilentWSGIServer(WSGIServer):
222 class UnixWSGIServer(UnixHTTPServer, WSGIServer):
/third_party/python/Doc/library/
Dwsgiref.rst279 .. 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/
Dtest_wsgiref.py12 from wsgiref.simple_server import WSGIServer, WSGIRequestHandler
27 class MockServer(WSGIServer):
/third_party/python/Misc/NEWS.d/
D3.8.0b1.rst1212 ``wsgiref.simple_server.WSGIServer`` is single-threaded.