module documentation

WSGI Protocol Linter ==================== This module provides a middleware that performs sanity checks on the behavior of the WSGI server and application. It checks that the :pep:`3333` WSGI spec is properly implemented. It also warns on some common HTTP errors such as non-empty responses for 304 status codes. .. autoclass:: LintMiddleware :copyright: 2007 Pallets :license: BSD-3-Clause

Class ErrorStream Undocumented
Class GuardedIterator Undocumented
Class GuardedWrite Undocumented
Class InputStream Undocumented
Class LintMiddleware Warns about common errors in the WSGI and HTTP behavior of the server and wrapped application. Some of the issues it checks are:
Exception HTTPWarning Warning class for HTTP warnings.
Exception WSGIWarning Warning class for WSGI warnings.
Function check_type Undocumented
def check_type(context: str, obj: object, need: t.Type = str): (source)

Undocumented