class documentation

class LineDecoder: (source)

View In Hierarchy

Handles incrementally reading lines from text. Uses universal line decoding, supporting any of ` `, ` `, or ` ` as line endings, normalizing to ` `.

Method __init__ Undocumented
Method decode Undocumented
Method flush Undocumented
Instance Variable buffer Undocumented
def __init__(self): (source)

Undocumented

def decode(self, text): (source)

Undocumented

Parameters
text:strUndocumented
Returns
typing.List[str]Undocumented
def flush(self): (source)

Undocumented

Returns
typing.List[str]Undocumented

Undocumented