Staging
v0.5.1
https://github.com/python/cpython
Revision d5537d071cc2acada7220431a0eea5931c2e8a2d authored by doko@ubuntu.com on 21 March 2013, 20:21:49 UTC, committed by doko@ubuntu.com on 21 March 2013, 20:21:49 UTC
  two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of
  SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
1 parent 03b0116
Raw File
Tip revision: d5537d071cc2acada7220431a0eea5931c2e8a2d authored by doko@ubuntu.com on 21 March 2013, 20:21:49 UTC
- Issue #16754: Fix the incorrect shared library extension on linux. Introduce
Tip revision: d5537d0
__init__.py
"""wsgiref -- a WSGI (PEP 333) Reference Library

Current Contents:

* util -- Miscellaneous useful functions and wrappers

* headers -- Manage response headers

* handlers -- base classes for server/gateway implementations

* simple_server -- a simple BaseHTTPServer that supports WSGI

* validate -- validation wrapper that sits between an app and a server
  to detect errors in either

To-Do:

* cgi_gateway -- Run WSGI apps under CGI (pending a deployment standard)

* cgi_wrapper -- Run CGI apps under WSGI

* router -- a simple middleware component that handles URL traversal
"""
back to top