Searched refs:WSGIServer (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/wsgiref/ |
D | simple_server.py | 40 class WSGIServer(HTTPServer): class 148 host, port, app, server_class=WSGIServer, handler_class=WSGIRequestHandler
|
/external/python/cpython3/Lib/wsgiref/ |
D | simple_server.py | 42 class WSGIServer(HTTPServer): class 151 host, port, app, server_class=WSGIServer, handler_class=WSGIRequestHandler
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | utils.py | 23 from wsgiref.simple_server import WSGIRequestHandler, WSGIServer 140 class SilentWSGIServer(WSGIServer): 221 class UnixWSGIServer(UnixHTTPServer, WSGIServer):
|
/external/python/cpython2/Doc/library/ |
D | wsgiref.rst | 274 .. 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/ |
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
|
/external/python/cpython2/Lib/test/ |
D | test_wsgiref.py | 7 from wsgiref.simple_server import WSGIServer, WSGIRequestHandler 18 class MockServer(WSGIServer):
|
/external/python/cpython3/Lib/test/ |
D | test_wsgiref.py | 10 from wsgiref.simple_server import WSGIServer, WSGIRequestHandler 25 class MockServer(WSGIServer):
|
/external/python/cpython2/Doc/howto/ |
D | webservers.rst | 290 from flup.server.fcgi import WSGIServer 301 WSGIServer(app).run()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0b1.rst | 1212 ``wsgiref.simple_server.WSGIServer`` is single-threaded.
|