diff options
author | Bryce Guinta <bryce.paul.guinta@gmail.com> | 2018-03-11 00:20:35 -0700 |
---|---|---|
committer | Bryce Guinta <bryce.paul.guinta@gmail.com> | 2018-03-11 00:57:53 -0700 |
commit | 7b0f007b7fe149f1202de572b6016f4c106fcb71 (patch) | |
tree | 6f7fe5cdb3defd23b609a5c8789fb93b55e59d0c /astroid/nodes.py | |
parent | f005552f45b6f731266f29ce909dbbc4a2ed4f9a (diff) | |
download | astroid-git-7b0f007b7fe149f1202de572b6016f4c106fcb71.tar.gz |
Move FrozenSet to node_classes so it is accessible
importing astroid.objects causes curcular imports with manager
Diffstat (limited to 'astroid/nodes.py')
-rw-r--r-- | astroid/nodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/nodes.py b/astroid/nodes.py index f9399a56..00e1a345 100644 --- a/astroid/nodes.py +++ b/astroid/nodes.py @@ -20,7 +20,7 @@ from astroid.node_classes import ( AssignName, AugAssign, Repr, BinOp, BoolOp, Break, Call, Compare, Comprehension, Const, Continue, Decorators, DelAttr, DelName, Delete, Dict, Expr, Ellipsis, EmptyNode, ExceptHandler, Exec, ExtSlice, For, - ImportFrom, Attribute, Global, If, IfExp, Import, Index, Keyword, + FrozenSet, ImportFrom, Attribute, Global, If, IfExp, Import, Index, Keyword, List, Name, Nonlocal, Pass, Print, Raise, Return, Set, Slice, Starred, Subscript, TryExcept, TryFinally, Tuple, UnaryOp, While, With, Yield, YieldFrom, const_factory, |