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