module documentation

Undocumented

Class Token Undocumented
Class Tokenizer Context-sensitive token parsing.
Exception ParserSyntaxError The provided source text could not be parsed correctly.
Constant DEFAULT_RULES Undocumented
DEFAULT_RULES: Dict[str, Union[str, re.Pattern[str]]] = (source)

Undocumented

Value
{'LEFT_PARENTHESIS': '\\(',
 'RIGHT_PARENTHESIS': '\\)',
 'LEFT_BRACKET': '\\[',
 'RIGHT_BRACKET': '\\]',
 'SEMICOLON': ';',
 'COMMA': ',',
 'QUOTED_STRING': re.compile('''
...