diff options
author | Daniel Harding <dharding@gmail.com> | 2010-10-01 18:01:59 +0000 |
---|---|---|
committer | Daniel Harding <dharding@gmail.com> | 2010-10-01 18:01:59 +0000 |
commit | cbf24de987ff51a870f7177bb361f6204809c9a4 (patch) | |
tree | 878f289b4c6467b05eb762a3a5ddd81706262131 /utils.py | |
parent | 9f1ccc47ee2fe729959deb8d6b82381e77005029 (diff) | |
download | astroid-git-cbf24de987ff51a870f7177bb361f6204809c9a4.tar.gz |
add support for set comprehensions
Diffstat (limited to 'utils.py')
-rw-r--r-- | utils.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -198,6 +198,9 @@ class ASTVisitor(object): def visit_return(self, node): """dummy method for visiting an Return node""" + def visit_setcomp(self, node): + """dummy method for visiting an SetComp node""" + def visit_slice(self, node): """dummy method for visiting an Slice node""" |