module documentation

Parser constants that are used by parser.py and visitors.py.

Constant BACKTICK_NAME Undocumented
Constant EXTERNAL_NAME_PREFIX Undocumented
Constant RESERVED Undocumented
Constant RESERVED_PYTHON Undocumented
Constant STRING_RE Undocumented
BACKTICK_NAME = (source)

Undocumented

Value
re.compile(r'-|^~')
EXTERNAL_NAME_PREFIX: str = (source)

Undocumented

Value
'$external$'
RESERVED: list[str] = (source)

Undocumented

Value
['async',
 'class',
 'def',
 'else',
 'elif',
 'if',
 'or',
...
RESERVED_PYTHON: list[str] = (source)

Undocumented

Value
['and',
 'assert',
 'break',
 'continue',
 'del',
 'elif',
 'except',
...
STRING_RE = (source)

Undocumented

Value
re.compile(r'^([bu]?)((\'[^\']*\')|("[^"]*"))$')