class documentation

Undocumented

Method __init__ Undocumented
Method fetch_token Fetch the next token from source code.
Method fetch_until Fetch tokens until specified token appeared.
Method get_line Returns specified line.
Instance Variable buffers Undocumented
Instance Variable current Undocumented
Instance Variable previous Undocumented
Instance Variable tokens Undocumented
def __init__(self, buffers): (source)

Undocumented

Parameters
buffers:list[str]Undocumented
def fetch_token(self): (source)

Fetch the next token from source code. Returns ``None`` if sequence finished.

Returns
Token|NoneUndocumented
def fetch_until(self, condition): (source)

Fetch tokens until specified token appeared. .. note:: This also handles parenthesis well.

Parameters
condition:AnyUndocumented
Returns
list[Token]Undocumented
def get_line(self, lineno): (source)

Returns specified line.

Parameters
lineno:intUndocumented
Returns
strUndocumented

Undocumented

Undocumented

previous = (source)

Undocumented

Undocumented