class documentation

class ParseResult(list): (source)

View In Hierarchy

List-like object with some extra parse-related attributes. Specifically, a ``.remainder`` attribute, which is the string found after a ``--`` in any parsed argv list; and an ``.unparsed`` attribute, a list of tokens that were unable to be parsed. .. versionadded:: 1.0

Method __init__ Undocumented
Instance Variable remainder Undocumented
Instance Variable unparsed Undocumented
def __init__(self, *args, **kwargs): (source)

Undocumented

remainder: str = (source)

Undocumented

unparsed: list = (source)

Undocumented