diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-10-11 17:55:38 +0200 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-10-11 17:55:38 +0200 |
commit | 2f9dc118e314135f0d684ea30817b318155b9d4c (patch) | |
tree | 74f11bf32e72ace60fd567ea64118e6cc85a55d9 /bases.py | |
parent | a8a9b54ff5e9583cc0aa9fb2ad084702b6423991 (diff) | |
download | astroid-git-2f9dc118e314135f0d684ea30817b318155b9d4c.tar.gz |
add a "optional_assign" attribute to the NodeNG
This will make it possible to move LookupMixIn to mixins.py
Diffstat (limited to 'bases.py')
-rw-r--r-- | bases.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -342,6 +342,7 @@ class NodeNG(BaseClass): It represents a node of the new abstract syntax tree. """ is_statement = False + optional_assign = False # True for For (and for Comprehension if py <3.0) # attributes below are set by the builder module or by raw factories lineno = None fromlineno = None |