~malept/ubuntu/lucid/python2.6/dev-dependency-fix

« back to all changes in this revision

Viewing changes to Lib/wsgiref/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-02-13 12:51:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090213125100-uufgcb9yeqzujpqw
Tags: upstream-2.6.1
ImportĀ upstreamĀ versionĀ 2.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""wsgiref -- a WSGI (PEP 333) Reference Library
 
2
 
 
3
Current 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
To-Do:
 
17
 
 
18
* cgi_gateway -- Run WSGI apps under CGI (pending a deployment standard)
 
19
 
 
20
* cgi_wrapper -- Run CGI apps under WSGI
 
21
 
 
22
* router -- a simple middleware component that handles URL traversal
 
23
"""