diff options
| author | Emile Anclin <emile.anclin@logilab.fr> | 2010-10-11 18:17:09 +0200 |
|---|---|---|
| committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-10-11 18:17:09 +0200 |
| commit | 653e89d04baff8fba4ce3add0457c27e5dc32d81 (patch) | |
| tree | d05033eb337d49b4eb40b79b8353cdafe5d2f596 /nodes.py | |
| parent | 2f9dc118e314135f0d684ea30817b318155b9d4c (diff) | |
| download | astroid-git-653e89d04baff8fba4ce3add0457c27e5dc32d81.tar.gz | |
py3k: ListComp becomes a ComprehensionScope
Diffstat (limited to 'nodes.py')
| -rw-r--r-- | nodes.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -56,11 +56,11 @@ from logilab.astng.node_classes import Arguments, AssAttr, Assert, Assign, \ Comprehension, Const, Continue, Decorators, DelAttr, DelName, Delete, \ Dict, Discard, Ellipsis, EmptyNode, ExceptHandler, Exec, ExtSlice, For, \ From, Getattr, Global, If, IfExp, Import, Index, Keyword, \ - List, ListComp, Name, Pass, Print, Raise, Return, Set, Slice, Subscript, \ + List, Name, Pass, Print, Raise, Return, Set, Slice, Subscript, \ TryExcept, TryFinally, Tuple, UnaryOp, While, With, Yield, \ const_factory from logilab.astng.scoped_nodes import Module, GenExpr, Lambda, DictComp, \ - SetComp, Function, Class + ListComp, SetComp, Function, Class ALL_NODE_CLASSES = ( Arguments, AssAttr, Assert, Assign, AssName, AugAssign, |
