class documentation

class ResponseStream:

View In Hierarchy

A file descriptor like object used by the ResponseStreamMixin to represent the body of the stream. It directly pushes into the response iterable of the response object.
Method __init__ Undocumented
Method close Undocumented
Method flush Undocumented
Method isatty Undocumented
Method tell Undocumented
Method write Undocumented
Method writelines Undocumented
Class Variable mode Undocumented
Instance Variable closed Undocumented
Instance Variable response Undocumented
Property encoding Undocumented
def __init__(self, response):

Undocumented

Parameters
response:ResponseUndocumented
def close(self):

Undocumented

def flush(self):

Undocumented

def isatty(self):

Undocumented

Returns
boolUndocumented
def tell(self):

Undocumented

Returns
intUndocumented
def write(self, value):

Undocumented

Parameters
value:bytesUndocumented
Returns
intUndocumented
def writelines(self, seq):

Undocumented

Parameters
seq:t.Iterable[bytes]Undocumented
mode: str =

Undocumented

closed: bool =

Undocumented

response =

Undocumented

@property
encoding: str =

Undocumented