https://github.com/python/cpython
Revision 89fe554715247f394a5e82d76f65aa294a80ad90 authored by Victor Stinner on 24 October 2018, 14:08:47 UTC, committed by Victor Stinner on 25 October 2018, 22:05:33 UTC
* Convert PyObject_INIT() and PyObject_INIT_VAR() macros to static
  inline functions.
* Fix usage of these functions: cast to PyObject* or PyVarObject*.
1 parent c89a932
Raw File
Tip revision: 89fe554715247f394a5e82d76f65aa294a80ad90 authored by Victor Stinner on 24 October 2018, 14:08:47 UTC
bpo-35059: Convert PyObject_INIT() to function
Tip revision: 89fe554
__init__.py
"""wsgiref -- a WSGI (PEP 3333) 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