class documentation

class HttpHeaders(CaseInsensitiveMapping):

View In Hierarchy

Undocumented

Class Method parse​_header​_name Undocumented
Constant HTTP​_PREFIX Undocumented
Constant UNPREFIXED​_HEADERS Undocumented
Method __getitem__ Allow header lookup using underscores in place of hyphens.
Method __init__ Undocumented

Inherited from CaseInsensitiveMapping:

Method __eq__ Undocumented
Method __iter__ Undocumented
Method __len__ Undocumented
Method __repr__ Undocumented
Method copy Undocumented
Instance Variable ​_store Undocumented
@classmethod
def parse_header_name(cls, header):

Undocumented

HTTP_PREFIX: str =

Undocumented

Value
'HTTP_'
UNPREFIXED_HEADERS: set[str] =

Undocumented

Value
set(['CONTENT_TYPE', 'CONTENT_LENGTH'])
def __getitem__(self, key):
Allow header lookup using underscores in place of hyphens.
def __init__(self, environ):