class documentation

Undocumented

Method __delitem__ Undocumented
Method __init__ Populate the initial data using __setitem__ to ensure values are correctly encoded.
Method __setitem__ Undocumented
Method pop Undocumented
Method setdefault Undocumented
Method _convert_to_charset Convert headers key/value to ascii/latin-1 native strings. `charset` must be 'ascii' or 'latin-1'. If `mime_encode` is True and `value` can't be represented in the given charset, apply MIME-encoding.
Instance Variable _store Undocumented

Inherited from CaseInsensitiveMapping:

Method __eq__ Undocumented
Method __getitem__ Undocumented
Method __iter__ Undocumented
Method __len__ Undocumented
Method __repr__ Undocumented
Method copy Undocumented
Static Method _unpack_items Undocumented
def __delitem__(self, key): (source)

Undocumented

def __init__(self, data): (source)

Populate the initial data using __setitem__ to ensure values are correctly encoded.

def __setitem__(self, key, value): (source)

Undocumented

def pop(self, key, default=None): (source)

Undocumented

def setdefault(self, key, value): (source)

Undocumented

def _convert_to_charset(self, value, charset, mime_encode=False): (source)

Convert headers key/value to ascii/latin-1 native strings. `charset` must be 'ascii' or 'latin-1'. If `mime_encode` is True and `value` can't be represented in the given charset, apply MIME-encoding.