summaryrefslogtreecommitdiff
path: root/astroid/nodes.py
diff options
context:
space:
mode:
Diffstat (limited to 'astroid/nodes.py')
-rw-r--r--astroid/nodes.py86
1 files changed, 1 insertions, 85 deletions
diff --git a/astroid/nodes.py b/astroid/nodes.py
index 1f6b09d6..30512640 100644
--- a/astroid/nodes.py
+++ b/astroid/nodes.py
@@ -23,91 +23,7 @@ All nodes inherit from :class:`~astroid.node_classes.NodeNG`.
# Nodes not present in the builtin ast module: DictUnpack, Unknown, and EvaluatedObject.
-__all__ = (
- "AsyncFunctionDef",
- "AsyncFor",
- "AsyncWith",
- "Await",
- "Arguments",
- "AssignAttr",
- "Assert",
- "Assign",
- "AnnAssign",
- "AssignName",
- "AugAssign",
- "BinOp",
- "BoolOp",
- "Break",
- "Call",
- "ClassDef",
- "Compare",
- "Comprehension",
- "Const",
- "const_factory",
- "Continue",
- "Decorators",
- "DelAttr",
- "DelName",
- "Delete",
- "Dict",
- "DictComp",
- "DictUnpack",
- "Expr",
- "Ellipsis",
- "EmptyNode",
- "EvaluatedObject",
- "ExceptHandler",
- "ExtSlice",
- "For",
- "ImportFrom",
- "FunctionDef",
- "Attribute",
- "GeneratorExp",
- "Global",
- "If",
- "IfExp",
- "Import",
- "Index",
- "Keyword",
- "Lambda",
- "List",
- "ListComp",
- "Match",
- "MatchAs",
- "MatchCase",
- "MatchClass",
- "MatchMapping",
- "MatchOr",
- "MatchSequence",
- "MatchSingleton",
- "MatchStar",
- "MatchValue",
- "Name",
- "NamedExpr",
- "Nonlocal",
- "Module",
- "Pass",
- "Raise",
- "Return",
- "Set",
- "SetComp",
- "Slice",
- "Starred",
- "Subscript",
- "TryExcept",
- "TryFinally",
- "Tuple",
- "UnaryOp",
- "Unknown",
- "While",
- "With",
- "Yield",
- "YieldFrom",
- "FormattedValue",
- "JoinedStr",
-)
-
-from astroid.node_classes import ( # pylint: disable=redefined-builtin
+from astroid.node_classes import ( # pylint: disable=redefined-builtin (Ellipsis)
AnnAssign,
Arguments,
Assert,