class documentation

class LineDecoder:

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):

Undocumented

def decode(self, text):

Undocumented

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

Undocumented

Returns
typing.List[str]Undocumented
buffer: str =

Undocumented