|
- Method resolution order:
- HeadersMixin
- abc.ABC
- builtins.object
Methods defined here:
- __bytes__(self) -> bytes
- Get this instances as bytes.
- __getitem__(self, key: str) -> str
- Get a header key.
- __init__(self, lines: list[str] = None) -> None
- Initialize this instance.
- __setitem__(self, key: str, value: str) -> None
- Set a header key.
- __str__(self) -> str
- Get this response as a string.
- from_lines(self, lines: list[str]) -> None
- Update this request from line data.
- get(self, key: str, default: str = None) -> Optional[str]
- Get a possible header value.
- write_field_lines(self, stream: <class 'TextIO'>) -> None
- Write field lines to a stream.
Readonly properties defined here:
- content_length
- Get a value for context length.
Data descriptors defined here:
- __dict__
- dictionary for instance variables
- __weakref__
- list of weak references to the object
Data and other attributes defined here:
- __abstractmethods__ = frozenset({'__str__', 'from_lines'})
|