ยปCore Development>Code coverage>Lib/wsgiref/__init__.py

Python code coverage for Lib/wsgiref/__init__.py

#countcontent
1n/a"""wsgiref -- a WSGI (PEP 3333) Reference Library
2n/a
3n/aCurrent Contents:
4n/a
5n/a* util -- Miscellaneous useful functions and wrappers
6n/a
7n/a* headers -- Manage response headers
8n/a
9n/a* handlers -- base classes for server/gateway implementations
10n/a
11n/a* simple_server -- a simple BaseHTTPServer that supports WSGI
12n/a
13n/a* validate -- validation wrapper that sits between an app and a server
14n/a to detect errors in either
15n/a
16n/aTo-Do:
17n/a
18n/a* cgi_gateway -- Run WSGI apps under CGI (pending a deployment standard)
19n/a
20n/a* cgi_wrapper -- Run CGI apps under WSGI
21n/a
22n/a* router -- a simple middleware component that handles URL traversal
23n/a"""