module documentation

this module contains utilities for rebuilding an _ast tree in order to get a single Astroid representation

Class TreeRebuilder Rebuilds the _ast tree to become an Astroid tree
Constant REDIRECT Undocumented
Type Variable T_Doc Undocumented
Type Variable T_For Undocumented
Type Variable T_Function Undocumented
Type Variable T_With Undocumented
REDIRECT: dict[str, str] = (source)

Undocumented

Value
{'arguments': 'Arguments',
 'comprehension': 'Comprehension',
 'ListCompFor': 'Comprehension',
 'GenExprFor': 'Comprehension',
 'excepthandler': 'ExceptHandler',
 'keyword': 'Keyword',
 'match_case': 'MatchCase'}

Undocumented

Value
TypeVar('T_Doc',
        'ast.Module',
        'ast.ClassDef',
        Union['ast.FunctionDef', 'ast.AsyncFunctionDef'])

Undocumented

Value
TypeVar('T_For', nodes.For, nodes.AsyncFor)
T_Function = (source)

Undocumented

Value
TypeVar('T_Function', nodes.FunctionDef, nodes.AsyncFunctionDef)

Undocumented

Value
TypeVar('T_With', nodes.With, nodes.AsyncWith)