Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/wsgiref/
Dsimple_server.py40 class WSGIServer(HTTPServer): class
148 host, port, app, server_class=WSGIServer, handler_class=WSGIRequestHandler
/external/python/cpython3/Lib/wsgiref/
Dsimple_server.py42 class WSGIServer(HTTPServer): class
151 host, port, app, server_class=WSGIServer, handler_class=WSGIRequestHandler
/external/python/cpython3/Lib/test/test_asyncio/
Dutils.py23 from wsgiref.simple_server import WSGIRequestHandler, WSGIServer
140 class SilentWSGIServer(WSGIServer):
221 class UnixWSGIServer(UnixHTTPServer, WSGIServer):
/external/python/cpython2/Doc/library/
Dwsgiref.rst274 .. function:: make_server(host, port, app, server_class=WSGIServer, handler_class=WSGIRequestHandle…
304 .. class:: WSGIServer(server_address, RequestHandlerClass)
306 Create a :class:`WSGIServer` instance. *server_address* should be a
314 :class:`WSGIServer` is a subclass of :class:`BaseHTTPServer.HTTPServer`, so all
316 available. :class:`WSGIServer` also provides these WSGI-specific methods:
319 .. method:: WSGIServer.set_app(application)
325 .. method:: WSGIServer.get_app()
337 (a ``(host,port)`` tuple), and *server* (:class:`WSGIServer` instance).
340 automatically created as needed by :class:`WSGIServer` objects. You can,
349 implementation copies the contents of the :class:`WSGIServer` object's
/external/python/cpython3/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
/external/python/cpython2/Lib/test/
Dtest_wsgiref.py7 from wsgiref.simple_server import WSGIServer, WSGIRequestHandler
18 class MockServer(WSGIServer):
/external/python/cpython3/Lib/test/
Dtest_wsgiref.py10 from wsgiref.simple_server import WSGIServer, WSGIRequestHandler
25 class MockServer(WSGIServer):
/external/python/cpython2/Doc/howto/
Dwebservers.rst290 from flup.server.fcgi import WSGIServer
301 WSGIServer(app).run()
/external/python/cpython3/Misc/NEWS.d/
D3.8.0b1.rst1212 ``wsgiref.simple_server.WSGIServer`` is single-threaded.